summaryrefslogtreecommitdiff
path: root/tests/admin_views
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2016-09-21 15:12:13 -0700
committerGitHub <noreply@github.com>2016-09-21 15:12:13 -0700
commit2c716c1dc721e74ef14b2ac25e3510024c79e070 (patch)
treef516f6d20140b8e7386894f5787c1731f6245670 /tests/admin_views
parent42dc9d04006c0bdecba6e0c8a29038b01d5a62d7 (diff)
Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 boolean syntax.
Diffstat (limited to 'tests/admin_views')
-rw-r--r--tests/admin_views/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index ef0e44029f..c4ef2b5114 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -3335,7 +3335,7 @@ class AdminActionsTest(TestCase):
"""
response = self.client.get(reverse('admin:admin_views_externalsubscriber_changelist'))
self.assertContains(response, '''<label>Action: <select name="action" required>
-<option value="" selected="selected">---------</option>
+<option value="" selected>---------</option>
<option value="delete_selected">Delete selected external
subscribers</option>
<option value="redirect_to">Redirect to (Awesome action)</option>