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
9d5e0cca
Commit
9d5e0cca
authored
Dec 10, 2012
by
Hynek Schlawack
Browse files
Options
Browse Files
Download
Plain Diff
#15872: More shutil test fixes for Windows
parents
b57b0940
9a4a7506
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/test/test_shutil.py
Lib/test/test_shutil.py
+2
-2
No files found.
Lib/test/test_shutil.py
View file @
9d5e0cca
...
...
@@ -188,11 +188,11 @@ class TestShutil(unittest.TestCase):
self
.
assertIs
(
errors
[
0
][
0
],
os
.
listdir
)
self
.
assertEqual
(
errors
[
0
][
1
],
filename
)
self
.
assertIsInstance
(
errors
[
0
][
2
][
1
],
NotADirectoryError
)
self
.
assertEqual
(
errors
[
0
][
2
][
1
].
filename
,
file
name
)
self
.
assertEqual
(
errors
[
0
][
2
][
1
].
filename
,
rm_
name
)
self
.
assertIs
(
errors
[
1
][
0
],
os
.
rmdir
)
self
.
assertEqual
(
errors
[
1
][
1
],
filename
)
self
.
assertIsInstance
(
errors
[
1
][
2
][
1
],
NotADirectoryError
)
self
.
assertEqual
(
errors
[
1
][
2
][
1
].
filename
,
file
name
)
self
.
assertEqual
(
errors
[
1
][
2
][
1
].
filename
,
rm_
name
)
# See bug #1071513 for why we don't run this on cygwin
# and bug #1076467 for why we don't run this as root.
...
...
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