Skip to content

Commit 6a5020d

Browse files
volodymyrssbsipocz
authored andcommitted
make test more future-proof
1 parent 24e3b6c commit 6a5020d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astroquery/heasarc/tests/test_heasarc_remote_isdc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def test_basic_example(self):
147147
radius='1 degree'
148148
)
149149

150-
assert len(table) == 274
150+
assert len(table) >= 274
151151

152152
def test_mission_list(self):
153153
heasarc = Heasarc()
@@ -207,4 +207,4 @@ def test_query_region(self):
207207
)
208208
table = heasarc.query_region(c, mission=mission, radius='1 degree')
209209

210-
assert len(table) == 274
210+
assert len(table) >= 274

0 commit comments

Comments
 (0)