diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2016-09-21 15:12:13 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-21 15:12:13 -0700 |
| commit | 2c716c1dc721e74ef14b2ac25e3510024c79e070 (patch) | |
| tree | f516f6d20140b8e7386894f5787c1731f6245670 /tests/admin_views/tests.py | |
| parent | 42dc9d04006c0bdecba6e0c8a29038b01d5a62d7 (diff) | |
Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 boolean syntax.
Diffstat (limited to 'tests/admin_views/tests.py')
| -rw-r--r-- | tests/admin_views/tests.py | 2 |
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> |
