diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-11-17 17:26:20 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-10 12:24:52 -0500 |
| commit | 07988744b347302925bc6cc66511e34224db55ab (patch) | |
| tree | 8931006956c957f377133fda6852dafc60e03ff9 /tests/admin_custom_urls | |
| parent | 48ad288679a0cb2e2cfb17f128903e6c5b1c4870 (diff) | |
Fixed #13165 -- Added edit and delete links to admin foreign key widgets.
Thanks to Collin Anderson for the review and suggestions and Tim for the
final review.
Diffstat (limited to 'tests/admin_custom_urls')
| -rw-r--r-- | tests/admin_custom_urls/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_custom_urls/tests.py b/tests/admin_custom_urls/tests.py index d327b33407..f3182cd246 100644 --- a/tests/admin_custom_urls/tests.py +++ b/tests/admin_custom_urls/tests.py @@ -50,7 +50,7 @@ class AdminCustomUrlsTest(TestCase): } response = self.client.post('/admin/admin_custom_urls/action/!add/', post_data) self.assertEqual(response.status_code, 200) - self.assertContains(response, 'dismissAddAnotherPopup') + self.assertContains(response, 'dismissAddRelatedObjectPopup') self.assertContains(response, 'Action added through a popup') def test_admin_URLs_no_clash(self): |
