diff options
Diffstat (limited to 'tests/syndication_tests/tests.py')
| -rw-r--r-- | tests/syndication_tests/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/syndication_tests/tests.py b/tests/syndication_tests/tests.py index 5a7cfbb057..5369320bdd 100644 --- a/tests/syndication_tests/tests.py +++ b/tests/syndication_tests/tests.py @@ -300,7 +300,7 @@ class SyndicationFeedTest(FeedTestCase): self.assertNotEqual(published, updated) def test_atom_single_enclosure(self): - response = self.client.get('/syndication/rss2/single-enclosure/') + response = self.client.get('/syndication/atom/single-enclosure/') feed = minidom.parseString(response.content).firstChild items = feed.getElementsByTagName('entry') for item in items: @@ -309,7 +309,7 @@ class SyndicationFeedTest(FeedTestCase): self.assertEqual(len(links), 1) def test_atom_multiple_enclosures(self): - response = self.client.get('/syndication/rss2/single-enclosure/') + response = self.client.get('/syndication/atom/multiple-enclosure/') feed = minidom.parseString(response.content).firstChild items = feed.getElementsByTagName('entry') for item in items: |
