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
d47af531
Commit
d47af531
authored
Mar 15, 2011
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move off of assertEquals() and over to assertEqual().
parent
ab1dfd68
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Lib/test/test_fileinput.py
Lib/test/test_fileinput.py
+3
-3
No files found.
Lib/test/test_fileinput.py
View file @
d47af531
...
...
@@ -277,7 +277,7 @@ class FileInputTests(unittest.TestCase):
def
test_empty_files_list_specified_to_constructor
(
self
):
with
FileInput
(
files
=
[])
as
fi
:
self
.
assertEqual
s
(
fi
.
_files
,
(
'-'
,))
self
.
assertEqual
(
fi
.
_files
,
(
'-'
,))
def
test__getitem__
(
self
):
"""Tests invoking FileInput.__getitem__() with the current
...
...
@@ -298,7 +298,7 @@ class FileInputTests(unittest.TestCase):
with
FileInput
(
files
=
[
t
])
as
fi
:
with
self
.
assertRaises
(
RuntimeError
)
as
cm
:
fi
[
1
]
self
.
assertEqual
s
(
cm
.
exception
.
args
,
(
"accessing lines out of order"
,))
self
.
assertEqual
(
cm
.
exception
.
args
,
(
"accessing lines out of order"
,))
def
test__getitem__eof
(
self
):
"""Tests invoking FileInput.__getitem__() with the line number but at
...
...
@@ -308,7 +308,7 @@ class FileInputTests(unittest.TestCase):
with
FileInput
(
files
=
[
t
])
as
fi
:
with
self
.
assertRaises
(
IndexError
)
as
cm
:
fi
[
0
]
self
.
assertEqual
s
(
cm
.
exception
.
args
,
(
"end of input reached"
,))
self
.
assertEqual
(
cm
.
exception
.
args
,
(
"end of input reached"
,))
def
test_nextfile_oserror_deleting_backup
(
self
):
"""Tests invoking FileInput.nextfile() when the attempt to delete
...
...
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