Skip to content

Commit 60d2217

Browse files
committed
accidentially reversed the windows condition
1 parent c602f40 commit 60d2217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astroquery/heasarc/tests/test_heasarc_remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
from .parametrization import parametrization_local_save_remote, patch_get, MockResponse
1212

13-
if not sys.platform.startswith("win"):
14-
pytest.skip("skipping windows-only tests", allow_module_level=True)
13+
if sys.platform.startswith("win"):
14+
pytest.skip("skipping tests on windows", allow_module_level=True)
1515

1616

1717
@parametrization_local_save_remote

0 commit comments

Comments
 (0)