summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2018-09-06 02:17:41 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2018-09-06 02:17:41 -0400
commit16fa4d1c4cf69ee90c93dc9530ac1d41b736046d (patch)
treea9316985dc2ece987eba8b970b48d2086f339483 /numpy
parentdbd2b06ae9ee6942d4f0064641acd0ce55070dfe (diff)
downloadnumpy-16fa4d1c4cf69ee90c93dc9530ac1d41b736046d.tar.gz
TST: Fix duplicated test name.
It's a straightforward copy&paste error, but it means not all these tests get run.
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):