[Python-checkins] python/nondist/sandbox/string/tests test_pep292.py, 1.3, 1.4

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Fri Aug 20 00:52:50 CEST 2004


Update of /cvsroot/python/python/nondist/sandbox/string/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10167/tests

Modified Files:
	test_pep292.py 
Log Message:
Fix typo in test_suite() that mis-identified the class to make a TestSuite out
of.


Index: test_pep292.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/string/tests/test_pep292.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_pep292.py	12 Aug 2004 21:22:51 -0000	1.3
--- test_pep292.py	19 Aug 2004 22:52:47 -0000	1.4
***************
*** 50,54 ****
  def test_suite():
      suite = unittest.TestSuite()
!     suite.addTest(unittest.makeSuite(TestTemplates))
      return suite
  
--- 50,54 ----
  def test_suite():
      suite = unittest.TestSuite()
!     suite.addTest(unittest.makeSuite(TestTemplate))
      return suite
  



More information about the Python-checkins mailing list