summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/tests/test_fixers.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-09-28 19:13:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-09-28 19:13:10 (GMT)
commitb3b07205979f8cd33707365027d8958c6c525171 (patch)
treee01b889082c705be2c8444329cd882c0aa37128a /Lib/lib2to3/tests/test_fixers.py
parentf7622bfcfbef21833556fe79752b8fd1d3eeecde (diff)
parent3103631f664b0f823d51531801986caef04fdf9e (diff)
downloadcpython-b3b07205979f8cd33707365027d8958c6c525171.zip
cpython-b3b07205979f8cd33707365027d8958c6c525171.tar.gz
cpython-b3b07205979f8cd33707365027d8958c6c525171.tar.bz2
merge 3.3 (#19115)
Diffstat (limited to 'Lib/lib2to3/tests/test_fixers.py')
-rw-r--r--Lib/lib2to3/tests/test_fixers.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py
index d7659fa..8b19c0a 100644
--- a/Lib/lib2to3/tests/test_fixers.py
+++ b/Lib/lib2to3/tests/test_fixers.py
@@ -1464,27 +1464,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)