Fix test that fails due to the creator/author_name changes.

This commit is contained in:
Timo Stollenwerk 2012-07-12 17:29:05 +02:00
parent a6a48a58dd
commit 103c7323e7
1 changed files with 2 additions and 1 deletions

View File

@ -435,7 +435,8 @@ class CommentCatalogTest(unittest.TestCase):
self.assertEqual(len(collection.results()), 1)
self.assertEqual(collection.results()[0].text, 'Comment text')
self.assertEqual(collection.results()[0].creator, 'Jim')
self.assertEqual(collection.results()[0].creator, 'jim')
self.assertEqual(collection.results()[0].author_name, 'Jim')
class NoConversationCatalogTest(unittest.TestCase):