diff --git a/tests/regressiontests/comment_tests/tests/feed_tests.py b/tests/regressiontests/comment_tests/tests/feed_tests.py index 6fe747c22d..b15ec0c7b8 100644 --- a/tests/regressiontests/comment_tests/tests/feed_tests.py +++ b/tests/regressiontests/comment_tests/tests/feed_tests.py @@ -10,7 +10,7 @@ class CommentFeedTests(CommentTestCase): def test_feed(self): response = self.client.get(self.feed_url) self.assertEqual(response.status_code, 200) - self.assertEqual(response['Content-Type'], 'application/rss+xml') + self.assertEqual(response['Content-Type'], 'application/rss+xml; charset=utf-8') self.assertContains(response, '') self.assertContains(response, 'example.com comments') self.assertContains(response, 'http://example.com/')