diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2016-03-28 11:02:04 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-21 19:16:38 -0400 |
| commit | ec6121693f112ae33b653b4364e812722d2eb567 (patch) | |
| tree | b791f1345a114d07657a3d226d1c5ff4b1e3f369 /tests/postgres_tests/test_array.py | |
| parent | 4d1c229ee5cb210e8b592a8d9c87d4a66864328e (diff) | |
Fixed #22383 -- Added support for HTML5 required attribute on required form fields.
Diffstat (limited to 'tests/postgres_tests/test_array.py')
| -rw-r--r-- | tests/postgres_tests/test_array.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py index 670c98e7a7..edbc1d9241 100644 --- a/tests/postgres_tests/test_array.py +++ b/tests/postgres_tests/test_array.py @@ -699,9 +699,9 @@ class TestSplitFormField(PostgreSQLTestCase): <tr> <th><label for="id_array_0">Array:</label></th> <td> - <input id="id_array_0" name="array_0" type="text" /> - <input id="id_array_1" name="array_1" type="text" /> - <input id="id_array_2" name="array_2" type="text" /> + <input id="id_array_0" name="array_0" type="text" required /> + <input id="id_array_1" name="array_1" type="text" required /> + <input id="id_array_2" name="array_2" type="text" required /> </td> </tr> ''') |
