[Python-checkins] cpython (3.3): fix duplicate test names (closes #19115)

benjamin.peterson python-checkins at python.org
Sat Sep 28 21:13:34 CEST 2013


http://hg.python.org/cpython/rev/6bf37e2cbe83
changeset: 85823:6bf37e2cbe83
branch: 3.3
parent: 85819:41ed98a93236
user: Benjamin Peterson <benjamin at python.org>
date: Sat Sep 28 15:12:37 2013 -0400
summary:
 fix duplicate test names (closes #19115)
Patch by Xavier de Gaye.
files:
 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
--- a/Lib/lib2to3/tests/test_fixers.py
+++ b/Lib/lib2to3/tests/test_fixers.py
@@ -1405,27 +1405,27 @@
 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)
-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /