Skip to content

Commit

Permalink
Update test to use correct representation of null value
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna committed Sep 30, 2024
1 parent c1d2b8c commit 9390f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def test_get_metadata_submissions_report_as_admin(
assert data_row["Study Name"] == ""
assert data_row["PI Name"] == ""
assert data_row["PI Email"] == ""
assert data_row["Source Client"] is None
assert data_row["Status"] == "In Progress" # matches the default value defined in the faker
assert data_row["Source Client"] == "" # upstream faker does not have a `source_client` attribute
assert data_row["Status"] == "In Progress" # matches the default value defined in upstream faker


def test_obtain_submission_lock(db: Session, client: TestClient, logged_in_user):
Expand Down

0 comments on commit 9390f2e

Please sign in to comment.