Skip to content

Commit 8d34b95

Browse files
keflavichbsipocz
authored andcommitted
move a test into wfau/tests
1 parent 3c3ffd0 commit 8d34b95

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

astroquery/ukidss/tests/test_ukidss.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import astropy.units as u
99
import numpy.testing as npt
1010

11-
from ... import ukidss, wfau
11+
from ... import ukidss
1212
from ...utils import commons
1313
from ...utils.testing_tools import MockResponse
1414
from ...exceptions import InvalidQueryError
@@ -89,16 +89,6 @@ def get_mockreturn(method='GET', url='default_url',
8989
return MockResponse(content=content, url=url, **kwargs)
9090

9191

92-
@pytest.mark.parametrize(('dim', 'expected'),
93-
[(5 * u.arcmin, 5),
94-
(5 * u.degree, 300),
95-
('0d0m30s', 0.5),
96-
]
97-
)
98-
def test_parse_dimension(dim, expected):
99-
out = wfau.core._parse_dimension(dim)
100-
npt.assert_approx_equal(out, expected, significant=3)
101-
10292

10393
def test_get_images(patch_get, patch_get_readable_fileobj):
10494
image = ukidss.core.Ukidss.get_images(

0 commit comments

Comments
 (0)