summaryrefslogtreecommitdiff
path: root/tests/admin_changelist
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-04-29 07:00:20 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-29 07:01:46 +0200
commit0dafadadb924e09ffd43287604cb4c2c6e353891 (patch)
tree88f8d2b7ee2cc669f12564f47dae68d8708d42ba /tests/admin_changelist
parentbdff97d373682d8e1693c24f3b9f4cf2445fd2a2 (diff)
downloaddjango-0dafadadb924e09ffd43287604cb4c2c6e353891.tar.gz
Refs #30400 -- Improved typography of user facing strings in admin changelist.
Diffstat (limited to 'tests/admin_changelist')
-rw-r--r--tests/admin_changelist/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/admin_changelist/tests.py b/tests/admin_changelist/tests.py
index 4dff1edb32..f424e8a737 100644
--- a/tests/admin_changelist/tests.py
+++ b/tests/admin_changelist/tests.py
@@ -1326,9 +1326,9 @@ class SeleniumTests(AdminSeleniumTestCase):
try:
self.assertEqual(
alert.text,
- 'You have selected an action, but you haven\'t saved your '
+ 'You have selected an action, but you haven’t saved your '
'changes to individual fields yet. Please click OK to save. '
- 'You\'ll need to re-run the action.',
+ 'You’ll need to re-run the action.',
)
finally:
alert.dismiss()
@@ -1349,8 +1349,8 @@ class SeleniumTests(AdminSeleniumTestCase):
try:
self.assertEqual(
alert.text,
- 'You have selected an action, and you haven\'t made any '
- 'changes on individual fields. You\'re probably looking for '
+ 'You have selected an action, and you haven’t made any '
+ 'changes on individual fields. You’re probably looking for '
'the Go button rather than the Save button.',
)
finally: