diff options
| author | Matti Picus <matti.picus@gmail.com> | 2018-09-06 01:33:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-06 01:33:25 -0700 |
| commit | f8141ced806468939b7e2d277e5877bf40e935ea (patch) | |
| tree | a9316985dc2ece987eba8b970b48d2086f339483 /numpy | |
| parent | dbd2b06ae9ee6942d4f0064641acd0ce55070dfe (diff) | |
| parent | 16fa4d1c4cf69ee90c93dc9530ac1d41b736046d (diff) | |
| download | numpy-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.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): |
