Skip to content

Commit

Permalink
Fix number of peak matches test
Browse files Browse the repository at this point in the history
  • Loading branch information
bittremieux authored Mar 4, 2021
1 parent 0bdfe17 commit 53fe32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,9 +484,9 @@ def test_mirror_json(client):
assert 'spectrum1' in response_dict
assert 'spectrum2' in response_dict
assert 'cosine' in response_dict
assert 'peak_matches_count' in response_dict
assert 'n_peak_matches' in response_dict
assert 'peak_matches' in response_dict
assert (response_dict['peak_matches_count']
assert (response_dict['n_peak_matches']
== len(response_dict['peak_matches']))
for peak_match in response_dict['peak_matches']:
assert len(peak_match) == 2
Expand Down

0 comments on commit 53fe32f

Please sign in to comment.