diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-28 19:12:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-28 19:12:37 (GMT) |
commit | a094f04e7b4b34e3efc3cf9618b136756ad51a10 (patch) | |
tree | a06190630b570d1ca078c7c935cb4c86013a6d15 /Lib | |
parent | cfa5574405624c23e322912c465c029256e734be (diff) | |
download | cpython-a094f04e7b4b34e3efc3cf9618b136756ad51a10.zip cpython-a094f04e7b4b34e3efc3cf9618b136756ad51a10.tar.gz cpython-a094f04e7b4b34e3efc3cf9618b136756ad51a10.tar.bz2 |
fix duplicate test names (closes #19115)
Patch by Xavier de Gaye.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib2to3/tests/test_fixers.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index 1548281..1817208 100644 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -1405,27 +1405,27 @@ class Test_dict(FixerTestCase): a = "d.values()" self.check(b, a) - def test_14(self): + def test_28(self): b = "[i for i in d.viewkeys()]" a = "[i for i in d.keys()]" self.check(b, a) - def test_15(self): + def test_29(self): b = "(i for i in d.viewkeys())" a = "(i for i in d.keys())" self.check(b, a) - def test_17(self): + def test_30(self): b = "iter(d.viewkeys())" a = "iter(d.keys())" self.check(b, a) - def test_18(self): + def test_31(self): b = "list(d.viewkeys())" a = "list(d.keys())" self.check(b, a) - def test_19(self): + def test_32(self): b = "sorted(d.viewkeys())" a = "sorted(d.keys())" self.check(b, a) |