Fix copy&paste error: call title instead of count
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index 130a418..1b78ddd 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -90,7 +90,7 @@
self.checkmethod('title', u"fOrMaT,thIs-aS*titLe;String", u'Format,This-As*Title;String')
self.checkmethod('title', u"getInt", u'Getint')
- self.assertRaises(TypeError, u'hello'.count, 42)
+ self.assertRaises(TypeError, u'hello'.title, 42)
def test_find(self):
self.checkmethod('find', u'abcdefghiabc', 0, u'abc')