diff options
| author | Paul McMillan <Paul@McMillan.ws> | 2012-02-11 00:05:57 +0000 |
|---|---|---|
| committer | Paul McMillan <Paul@McMillan.ws> | 2012-02-11 00:05:57 +0000 |
| commit | 4768f39c95ea702788eafe86c6206fb605773965 (patch) | |
| tree | c143402c5a173926403091f9a92542d9c9bd66d6 | |
| parent | 114b655247243d553131b508111d173c3c1181ff (diff) | |
Fix the other test for #15237.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17495 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/comment_tests/tests/feed_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, '<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">') self.assertContains(response, '<title>example.com comments</title>') self.assertContains(response, '<link>http://example.com/</link>') |
