Skip to content

Commit 192c31f

Browse files
committed
TST: non need for the dummy for remote tests
1 parent d9e271c commit 192c31f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

astroquery/esa/xmm_newton/tests/test_xmm_newton_remote.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def test_download_data(self, tmp_cwd):
124124
'level': "ODF",
125125
'filename': 'file',
126126
'verbose': False}
127-
xsa = XMMNewtonClass(self.get_dummy_tap_handler())
127+
xsa = XMMNewtonClass()
128128
xsa.download_data(**parameters)
129129

130130
def test_download_data_single_file(self, tmp_cwd):
@@ -135,23 +135,23 @@ def test_download_data_single_file(self, tmp_cwd):
135135
'instname': 'OM',
136136
'extension': 'FTZ',
137137
'verbose': False}
138-
xsa = XMMNewtonClass(self.get_dummy_tap_handler())
138+
xsa = XMMNewtonClass()
139139
xsa.download_data(**parameters)
140140

141141
def test_get_postcard(self, tmp_cwd):
142142
parameters = {'observation_id': "0112880801",
143143
'image_type': "OBS_EPIC",
144144
'filename': None,
145145
'verbose': False}
146-
xsa = XMMNewtonClass(self.get_dummy_tap_handler())
146+
xsa = XMMNewtonClass()
147147
xsa.get_postcard(**parameters)
148148

149149
def test_get_postcard_filename(self, tmp_cwd):
150150
parameters = {'observation_id': "0112880801",
151151
'image_type': "OBS_EPIC",
152152
'filename': "test",
153153
'verbose': False}
154-
xsa = XMMNewtonClass(self.get_dummy_tap_handler())
154+
xsa = XMMNewtonClass()
155155
xsa.get_postcard(**parameters)
156156

157157
def test_get_epic_metadata(self):

0 commit comments

Comments
 (0)