Skip to content

Commit

Permalink
Fixed discrepancies in typing for deeparg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedanth-Ramji authored Nov 15, 2023
1 parent eeafd22 commit ef0579b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def test_add_aro_column_deeparg(is_hamronized, uses_manual_curation):
assert set(normed.loc[normed['gene_symbol'] == 'MGRB', 'ARO'].tolist()) == {'ARO:mgrB'}
else:
assert normed.set_index('#ARG').loc['YKKD', 'ARO'] == 'ARO:3003064'
assert normed.set_index('#ARG').loc['PENA', 'ARO'] == 'ARO:3004832'
assert normed.set_index('#ARG').loc['PBP-2X', 'ARO'] == 'ARO:PBP-2X'
assert list(normed.set_index('#ARG').loc['PENA', 'ARO']) == ['ARO:3004832', 'ARO:3004832']
assert list(normed.set_index('#ARG').loc['PBP-2X', 'ARO']) == ['ARO:PBP-2X', 'ARO:PBP-2X']
assert normed.set_index('#ARG').loc['TETR', 'ARO'] == 'ARO:3003479'
assert normed.set_index('#ARG').loc['PATA', 'ARO'] == 'ARO:3000024'

Expand Down

0 comments on commit ef0579b

Please sign in to comment.