mirror of https://github.com/python/cpython.git
Fix self.fail() call in test_data_header
This commit is contained in:
parent
a40b0ef6e2
commit
ad1fd346b2
|
@ -185,7 +185,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…
Reference in New Issue