summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2018-09-06 01:33:25 -0700
committerGitHub <noreply@github.com>2018-09-06 01:33:25 -0700
commitf8141ced806468939b7e2d277e5877bf40e935ea (patch)
treea9316985dc2ece987eba8b970b48d2086f339483 /numpy
parentdbd2b06ae9ee6942d4f0064641acd0ce55070dfe (diff)
parent16fa4d1c4cf69ee90c93dc9530ac1d41b736046d (diff)
downloadnumpy-f8141ced806468939b7e2d277e5877bf40e935ea.tar.gz
Merge pull request #11893 from QuLogic/duplicate-test
TST: Fix duplicated test name.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/lib/tests/test_io.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
index 1f3664d92..24b2ec15a 100644
--- a/numpy/lib/tests/test_io.py
+++ b/numpy/lib/tests/test_io.py
@@ -567,12 +567,12 @@ class LoadTxtBase(object):
@pytest.mark.skipif(not HAS_BZ2, reason="Needs bz2")
@pytest.mark.skipif(MAJVER == 2, reason="Needs Python version >= 3")
- def test_compressed_gzip(self):
+ def test_compressed_bz2(self):
self.check_compressed(bz2.open, ('.bz2',))
@pytest.mark.skipif(not HAS_LZMA, reason="Needs lzma")
@pytest.mark.skipif(MAJVER == 2, reason="Needs Python version >= 3")
- def test_compressed_gzip(self):
+ def test_compressed_lzma(self):
self.check_compressed(lzma.open, ('.xz', '.lzma'))
def test_encoding(self):