Skip to content

Commit 35a0324

Browse files
keflavichbsipocz
authored andcommitted
fix order
1 parent b9384f9 commit 35a0324

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

astroquery/splatalogue/tests/test_splatalogue.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ def data_path(filename):
1818
return os.path.join(data_dir, filename)
1919

2020

21-
def test_simple(patch_post):
22-
splatalogue.Splatalogue.query_lines(min_frequency=114 * u.GHz,
23-
max_frequency=116 * u.GHz,
24-
chemical_name=' CO ')
25-
26-
2721
def mockreturn(*args, method='POST', data={}, url='', **kwargs):
2822
with open(data_path("CO.json"), 'rb') as fh:
2923
jdata = fh.read()
@@ -38,6 +32,12 @@ def patch_post(request):
3832
return mp
3933

4034

35+
def test_simple(patch_post):
36+
splatalogue.Splatalogue.query_lines(min_frequency=114 * u.GHz,
37+
max_frequency=116 * u.GHz,
38+
chemical_name=' CO ')
39+
40+
4141
@pytest.mark.remote_data
4242
def test_init_remote():
4343
x = splatalogue.Splatalogue.query_lines(min_frequency=114 * u.GHz,

0 commit comments

Comments
 (0)