[Python-checkins] CVS: python/dist/src/Lib/test test_long_future.py,1.3,1.4

Tim Peters tim_one@users.sourceforge.net
Thu, 06 Sep 2001 17:47:02 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv18303/lib/test

Modified Files:
	test_long_future.py 
Log Message:
Fix typo in error reporting.  This doesn't need to go into the release
branch (if it ever gets to the typo, the test is failing anyway).


Index: test_long_future.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_long_future.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_long_future.py	2001/09/06 22:03:36	1.3
--- test_long_future.py	2001/09/07 00:47:00	1.4
***************
*** 42,46 ****
          result = eval(underflow, namespace)
          if result != 0.0:
!             raise TestFailed("expected undeflow to 0 from %r" % undeflow)
  
      for zero in ["huge / 0", "huge / 0L",
--- 42,46 ----
          result = eval(underflow, namespace)
          if result != 0.0:
!             raise TestFailed("expected underflow to 0 from %r" % underflow)
  
      for zero in ["huge / 0", "huge / 0L",