diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2018-09-06 02:17:41 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2018-09-06 02:17:41 -0400 |
commit | 16fa4d1c4cf69ee90c93dc9530ac1d41b736046d (patch) | |
tree | a9316985dc2ece987eba8b970b48d2086f339483 /numpy | |
parent | dbd2b06ae9ee6942d4f0064641acd0ce55070dfe (diff) | |
download | numpy-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.py | 4 |
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): |