diff options
author | Raymond Hettinger <python@rcn.com> | 2003-07-13 06:15:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-07-13 06:15:11 (GMT) |
commit | dc9dcf135e7bde09726d0af5cd55f49c31851c66 (patch) | |
tree | cf85411e4d518f8111fb6b8adde65da655901966 /Lib/test/output | |
parent | 0320464583957258031ebee1b8897343211e4339 (diff) | |
download | cpython-dc9dcf135e7bde09726d0af5cd55f49c31851c66.zip cpython-dc9dcf135e7bde09726d0af5cd55f49c31851c66.tar.gz cpython-dc9dcf135e7bde09726d0af5cd55f49c31851c66.tar.bz2 |
This test failed on WindowsME because the full file path did not get
reported consistently with the *nix world. 'Lib/test/test_warnings.py'
came out as 'lib\test\test_warnings.py'. The basename is all we care
about so I used that.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_warnings | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/output/test_warnings b/Lib/test/output/test_warnings index 9b45e42..8fe6d47 100644 --- a/Lib/test/output/test_warnings +++ b/Lib/test/output/test_warnings @@ -2,9 +2,9 @@ test_warnings ('ignore', False, 'FutureWarning', False, 0) ('ignore', True, 'OverflowWarning', True, 0) ('ignore', True, 'PendingDeprecationWarning', True, 0) -Lib/test/test_warnings.py:31: UserWarning: hello world -Lib/test/test_warnings.py:32: UserWarning: hello world -Lib/test/test_warnings.py:33: DeprecationWarning: hello world -Lib/test/test_warnings.py:35: UserWarning: hello world +test_warnings.py:31: UserWarning: hello world +test_warnings.py:32: UserWarning: hello world +test_warnings.py:33: DeprecationWarning: hello world +test_warnings.py:35: UserWarning: hello world Caught UserWarning: hello world Caught AssertionError: invalid action: 'booh' |