Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bgyori committed Jul 17, 2024
1 parent acf407a commit 3d97726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gilda/tests/test_grounder.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_grounder_bug():

def test_grounder_num_entries():
entries = gr.lookup('NPM1')
assert len(entries) == 4, entries
assert len(entries) == 5, entries
entries = gr.lookup('H4')
assert len(entries) == 7, entries

Expand Down Expand Up @@ -202,7 +202,7 @@ def test_unidecode():
for txt in txts:
matches = gr.ground(txt)
assert len(matches) == 2
assert {m.term.db for m in matches} == {'EFO', 'DOID'}
assert {m.term.db for m in matches} == {'EFO', 'MESH'}

txts = ['Bi₇O₉I₃', 'Bi7O9I3']
for txt in txts:
Expand Down

0 comments on commit 3d97726

Please sign in to comment.