Skip to content

Commit

Permalink
Merge pull request #188 from sot/fewer-bad-stars
Browse files Browse the repository at this point in the history
Reduce number of bad stars in test
  • Loading branch information
jeanconn authored Aug 21, 2024
2 parents 9a973b7 + e169f17 commit 686aa3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agasc/tests/test_agasc_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,14 +521,14 @@ def test_get_supplement_table_bad():
bad = agasc.get_supplement_table("bad")
assert isinstance(bad, Table)
assert bad.colnames == ["agasc_id", "source"]
assert len(bad) > 3300
assert len(bad) > 300
assert 797847184 in bad["agasc_id"]


def test_get_supplement_table_bad_dict():
bad = agasc.get_supplement_table("bad", as_dict=True)
assert isinstance(bad, dict)
assert len(bad) > 3300
assert len(bad) > 300
assert bad[797847184] == {"source": 1}


Expand Down

0 comments on commit 686aa3f

Please sign in to comment.