summaryrefslogtreecommitdiff
path: root/tests/syndication_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-12 20:16:04 -0400
committerTim Graham <timograham@gmail.com>2014-08-12 20:16:04 -0400
commitd38a00332ed012b889cce00d8ea51da728023ead (patch)
tree5231d3cccfe4220804b21f14dacc5b69777dc6d2 /tests/syndication_tests
parent68686430638215b5405b20bd767c0be392c9221d (diff)
downloaddjango-d38a00332ed012b889cce00d8ea51da728023ead.tar.gz
Updated tests for added newlines in 68686430638215b5405b20bd767c0be392c9221d.
Diffstat (limited to 'tests/syndication_tests')
-rw-r--r--tests/syndication_tests/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/syndication_tests/tests.py b/tests/syndication_tests/tests.py
index fabc3e1eaa..8da3d5e8e0 100644
--- a/tests/syndication_tests/tests.py
+++ b/tests/syndication_tests/tests.py
@@ -405,8 +405,8 @@ class SyndicationFeedTest(FeedTestCase):
items = chan.getElementsByTagName('item')
self.assertChildNodeContent(items[0], {
- 'title': 'Title in your templates: My first entry',
- 'description': 'Description in your templates: My first entry',
+ 'title': 'Title in your templates: My first entry\n',
+ 'description': 'Description in your templates: My first entry\n',
'link': 'http://example.com/blog/1/',
})
@@ -422,8 +422,8 @@ class SyndicationFeedTest(FeedTestCase):
items = chan.getElementsByTagName('item')
self.assertChildNodeContent(items[0], {
- 'title': 'My first entry (foo is bar)',
- 'description': 'My first entry (foo is bar)',
+ 'title': 'My first entry (foo is bar)\n',
+ 'description': 'My first entry (foo is bar)\n',
})
def test_add_domain(self):