[Python-checkins] python/dist/src/Lib/test test_unicode.py,1.76,1.77

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Mon, 10 Feb 2003 09:44:19 -0800


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

Modified Files:
	test_unicode.py 
Log Message:
Fix copy&paste error: call title instead of count


Index: test_unicode.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_unicode.py,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** test_unicode.py	19 Jan 2003 16:59:20 -0000	1.76
--- test_unicode.py	10 Feb 2003 17:44:16 -0000	1.77
***************
*** 91,95 ****
          self.checkmethod('title', u"getInt", u'Getint')
  
!         self.assertRaises(TypeError, u'hello'.count, 42)
  
      def test_find(self):
--- 91,95 ----
          self.checkmethod('title', u"getInt", u'Getint')
  
!         self.assertRaises(TypeError, u'hello'.title, 42)
  
      def test_find(self):