summaryrefslogtreecommitdiff
path: root/tests/admin_widgets
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-06-30 20:35:05 +0200
committerGitHub <noreply@github.com>2019-06-30 20:35:05 +0200
commit8fc8c958a5840df48a2bda110c6f06656968b156 (patch)
treea10bf2785d299665599682fd8f6bfad3791964d7 /tests/admin_widgets
parentd54baf6970d7a7298807de361c2ca5f42be9f363 (diff)
downloaddjango-8fc8c958a5840df48a2bda110c6f06656968b156.tar.gz
Fixed broken selenium tests after 42b9a23267f14be39b9b00958e18d5746783208e.
Diffstat (limited to 'tests/admin_widgets')
-rw-r--r--tests/admin_widgets/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py
index 22efcef6ce..7aa597a87d 100644
--- a/tests/admin_widgets/tests.py
+++ b/tests/admin_widgets/tests.py
@@ -1393,7 +1393,7 @@ class RelatedFieldWidgetSeleniumTests(AdminWidgetSeleniumTestCase):
# Go ahead and submit the form to make sure it works
self.selenium.find_element_by_css_selector(save_button_css_selector).click()
- self.wait_for_text('li.success', 'The profile "changednewuser" was added successfully.')
+ self.wait_for_text('li.success', 'The profile “changednewuser” was added successfully.')
profiles = Profile.objects.all()
self.assertEqual(len(profiles), 1)
self.assertEqual(profiles[0].user.username, username_value)