Skip to content

Commit

Permalink
fix failing unit test to correct value returned by CMR (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
skorper authored Feb 3, 2024
1 parent 9c07563 commit 7f01419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def test_search_after():
'bounding_box': "-180,-90,180,90",
}
results = pa.get_search_results(params, True)
assert results['hits'] == 3751
assert len(results['items']) == 3751
assert results['hits'] == 3762
assert len(results['items']) == 3762

def test_update_format_change(cleanup_update_test):
print("Running Test")
Expand Down

0 comments on commit 7f01419

Please sign in to comment.