diff options
Diffstat (limited to 'Lib/test/test_strftime.py')
| -rwxr-xr-x | Lib/test/test_strftime.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 2596287..25cf935 100755 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -69,7 +69,7 @@ def strftest(now):      nonstandard_expectations = (  	# These are standard but don't have predictable output  	('%c', fixasctime(time.asctime(now)), 'near-asctime() format'), -	('%Z', tz, 'time zone name'), +	('(%Z)', '(%s)' % tz, 'time zone name'),  	# These are some platform specific extensions  	('%D', '%02d/%02d/%02d' % (now[1], now[2], (now[0]%100)), 'mm/dd/yy'),  | 
