diff options
| author | Krisjanis Vaiders <krisjanisvaiders@gmail.com> | 2019-04-13 18:42:11 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-04-13 18:42:11 +0200 |
| commit | 79d3b905df7eee5658039cad33752e3354dad74a (patch) | |
| tree | 8229beabe6c6a64f8084a2c61bc724356e1aebf1 | |
| parent | 3e8b7333904f1ab6aa18eeb508659256f3644816 (diff) | |
Fixed #30358 -- Removed redundant assertion in FormsUtilsTestCase.test_error_dict_copy().
| -rw-r--r-- | AUTHORS | 1 | ||||
| -rw-r--r-- | tests/forms_tests/tests/test_utils.py | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -485,6 +485,7 @@ answer newbie questions, and generally made Django that much better: knox <christobzr@gmail.com> konrad@gwu.edu Kowito Charoenratchatabhan <kowito@felspar.com> + Krišjānis Vaiders <krisjanisvaiders@gmail.com> krzysiek.pawlik@silvermedia.pl Krzysztof Jurewicz <krzysztof.jurewicz@gmail.com> Krzysztof Kulewski <kulewski@gmail.com> diff --git a/tests/forms_tests/tests/test_utils.py b/tests/forms_tests/tests/test_utils.py index a9b4d99560..c849bfd262 100644 --- a/tests/forms_tests/tests/test_utils.py +++ b/tests/forms_tests/tests/test_utils.py @@ -151,7 +151,6 @@ class FormsUtilsTestCase(SimpleTestCase): e_deepcopy = copy.deepcopy(e) self.assertEqual(e, e_deepcopy) - self.assertEqual(e.as_data(), e_copy.as_data()) def test_error_dict_html_safe(self): e = ErrorDict() |
