]> granicus.if.org Git - python/commitdiff
fix duplicate test names (closes #19115)
authorBenjamin Peterson <benjamin@python.org>
Sat, 28 Sep 2013 19:12:37 +0000 (15:12 -0400)
committerBenjamin Peterson <benjamin@python.org>
Sat, 28 Sep 2013 19:12:37 +0000 (15:12 -0400)
Patch by Xavier de Gaye.

Lib/lib2to3/tests/test_fixers.py

index 914b3bf9287f88a15d627295a07b988a33a2a19b..2d20b084142e966c9da79b1cef2111c0123404e5 100644 (file)
@@ -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)