mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix self.fail() call in test_data_header
This commit is contained in:
parent
a40b0ef6e2
commit
ad1fd346b2
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ class urlretrieveNetworkTests(unittest.TestCase):
|
|||
try:
|
||||
time.strptime(datevalue, dateformat)
|
||||
except ValueError:
|
||||
self.fail('Date value not in %r format', dateformat)
|
||||
self.fail('Date value not in %r format' % dateformat)
|
||||
|
||||
def test_reporthook(self):
|
||||
records = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue