[Python-checkins] python/dist/src/Lib/test/output test_warnings,1.1,1.2

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 12 Jul 2003 23:15:13 -0700


Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory sc8-pr-cvs1:/tmp/cvs-serv10418/output

Modified Files:
	test_warnings 
Log Message:
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.



Index: test_warnings
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_warnings,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_warnings	11 Jul 2003 15:37:59 -0000	1.1
--- test_warnings	13 Jul 2003 06:15:11 -0000	1.2
***************
*** 3,10 ****
  ('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
  Caught UserWarning: hello world
  Caught AssertionError: invalid action: 'booh'
--- 3,10 ----
  ('ignore', True, 'OverflowWarning', True, 0)
  ('ignore', True, 'PendingDeprecationWarning', True, 0)
! 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'