Fixed #30358 -- Removed redundant assertion in FormsUtilsTestCase.test_error_dict_copy().

This commit is contained in:
Krisjanis Vaiders 2019-04-13 18:42:11 +02:00 committed by Mariusz Felisiak
parent 3e8b733390
commit 79d3b905df
2 changed files with 1 additions and 1 deletions

View File

@ -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>

View File

@ -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()