mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
Fix self.fail() call in test_data_header
This commit is contained in:
commit
ca716cfbf3
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ def test_data_header(self):
|
|||
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