Skip to content

Commit

Permalink
update test, as fix leads to more bufr conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Nov 29, 2023
1 parent cd2f598 commit 0503d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def test_message_api():
counts = {
'mw_met_centre': 24,
'roma_met_centre': 33,
'alger_met_centre': 28,
'alger_met_centre': 29,
'rnimh': 188,
'brazza_met_centre': 15
}
Expand All @@ -242,7 +242,7 @@ def test_message_api():
r = SESSION.get(url).json()

# should match sum of counts above
assert r['numberMatched'] == 288
assert r['numberMatched'] == sum(counts.values())

msg = r['features'][5]
is_valid, _ = validate_message(msg)
Expand Down

0 comments on commit 0503d5f

Please sign in to comment.