Browse Source

Fixed test

Rafał Pitoń 10 years ago
parent
commit
2bbadf51bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/notifications/tests/test_views.py

+ 1 - 1
misago/notifications/tests/test_views.py

@@ -53,7 +53,7 @@ class NotificationViewsTestCase(AdminTestCase):
         """get request to list renders list"""
         """get request to list renders list"""
         response = self.client.get(self.view_link, **self.ajax_header)
         response = self.client.get(self.view_link, **self.ajax_header)
         self.assertEqual(response.status_code, 200)
         self.assertEqual(response.status_code, 200)
-        self.assertIn("have any notifications", response.content)
+        self.assertIn("have any new notifications", response.content)
 
 
         self.notify_user()
         self.notify_user()