diff options
author | David Smith <smithdc@gmail.com> | 2022-05-05 14:26:09 +0200 |
---|---|---|
committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2022-05-17 11:16:54 +0200 |
commit | d126eba3637d84caa80fa4258e2e59ef07a8260c (patch) | |
tree | e135d40a0934710bae8dcb7e912b49695e600adb /tests/postgres_tests/test_array.py | |
parent | 6af8673255ad2aca01097db9a8c64dc6b31678c0 (diff) | |
download | django-d126eba3637d84caa80fa4258e2e59ef07a8260c.tar.gz |
Refs #32339 -- Deprecated default.html form template.
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
Diffstat (limited to 'tests/postgres_tests/test_array.py')
-rw-r--r-- | tests/postgres_tests/test_array.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py index 7243ab6a5a..1100e8f3b0 100644 --- a/tests/postgres_tests/test_array.py +++ b/tests/postgres_tests/test_array.py @@ -1196,14 +1196,12 @@ class TestSplitFormField(PostgreSQLSimpleTestCase): self.assertHTMLEqual( str(SplitForm()), """ - <tr> - <th><label for="id_array_0">Array:</label></th> - <td> - <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> + <div> + <label for="id_array_0">Array:</label> + <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> + </div> """, ) |