Skip to content

Commit 2bb7e83

Browse files
rickynilssonbsipocz
authored andcommitted
Cleanup
1 parent ad25430 commit 2bb7e83

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

astroquery/nasa_exoplanet_archive/tests/test_nasa_exoplanet_archive.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def test_get_query_payload():
270270

271271
def mock_run_query(table="ps", get_query_payload=True, select="count(*)", where="disc_facility like '%TESS%'"):
272272
assert table == "ps"
273-
assert get_query_payload == True
273+
assert get_query_payload
274274
assert select == "count(*)"
275275
assert where == "disc_facility like '%TESS%'"
276276
result = PropertyMock()
@@ -281,4 +281,3 @@ def mock_run_query(table="ps", get_query_payload=True, select="count(*)", where=
281281
assert 'ps' in response['table']
282282
assert 'count(*)' in response['select']
283283
assert "disc_facility like '%TESS%'" in response['where']
284-

0 commit comments

Comments
 (0)