Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
27438f2d
Commit
27438f2d
authored
Sep 28, 2013
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix duplicate test names (closes #19115)
Patch by Xavier de Gaye.
parent
37e274a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Lib/lib2to3/tests/test_fixers.py
Lib/lib2to3/tests/test_fixers.py
+5
-5
No files found.
Lib/lib2to3/tests/test_fixers.py
View file @
27438f2d
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment