Skip to content

Commit 9d4f167

Browse files
committed
pep-8
1 parent 0891d27 commit 9d4f167

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

astroquery/eso/tests/test_eso_remote.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,19 @@ def test_empty_return(self):
169169
assert len(result_s) == 0
170170

171171
@pytest.mark.filterwarnings("ignore::pyvo.dal.exceptions.DALOverflowWarning")
172-
def test_sgrastar_column_filters(self, tmp_path):
172+
def test_sgrastar_column_filters(self):
173173
eso = Eso()
174174

175175
result1 = eso.query_surveys(["sphere", "vegas"],
176-
columns="obs_collection, calib_level, multi_ob, filter, s_pixel_scale, instrument_name",
176+
columns=("obs_collection, calib_level, "
177+
"multi_ob, filter, s_pixel_scale, instrument_name"),
177178
calib_level=3,
178179
multi_ob='M'
179180
)
180181

181182
result2 = eso.query_surveys("sphere, vegas",
182-
columns="obs_collection, calib_level, multi_ob, filter, s_pixel_scale, instrument_name",
183+
columns=("obs_collection, calib_level, "
184+
"multi_ob, filter, s_pixel_scale, instrument_name"),
183185
column_filters={
184186
'calib_level': 3,
185187
'multi_ob': 'M'

0 commit comments

Comments
 (0)