[Python-checkins] python/dist/src/Lib/bsddb/test test_all.py, 1.3, 1.4

greg at users.sourceforge.net greg at users.sourceforge.net
Tue Mar 16 02:07:09 EST 2004


Update of /cvsroot/python/python/dist/src/Lib/bsddb/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19726

Modified Files:
	test_all.py 
Log Message:
bugfix for people executing test_all to run the test suite.  (call the 
correct function)


Index: test_all.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/bsddb/test/test_all.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_all.py	21 Sep 2003 00:08:14 -0000	1.3
--- test_all.py	16 Mar 2004 07:07:06 -0000	1.4
***************
*** 67,71 ****
      for name in test_modules:
          module = __import__(name)
!         alltests.addTest(module.suite())
      return alltests
  
--- 67,71 ----
      for name in test_modules:
          module = __import__(name)
!         alltests.addTest(module.test_suite())
      return alltests
  




More information about the Python-checkins mailing list