Skip to content

Commit

Permalink
Updated mock tableQuery call in test_ops.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymedina committed Mar 19, 2024
1 parent a8ec7da commit e192e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/services/synapse/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def test_get_submissions_with_status(

# Assertions
syn_mock.tableQuery.assert_called_once_with(
f"select * from {submission_view} where status = '{submission_status}'"
f"select id from {submission_view} where status = '{submission_status}'"
)
table_mock.asDataFrame.assert_called()
assert result == input_dict["id"]
Expand Down

0 comments on commit e192e6e

Please sign in to comment.