diff options
author | Bouke Haarsma <bouke@webatoom.nl> | 2013-10-15 22:36:49 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2013-10-17 09:42:28 -0400 |
commit | 2fb5a51fa3ac276efc7121ec9de91f092a986104 (patch) | |
tree | 77f8d7072b079cb9cddb1e8e05bb613681705f7b /tests/utils_tests/test_datastructures.py | |
parent | 98788d3c3af9f6cce2b94c276d17726f46608b08 (diff) | |
download | django-2fb5a51fa3ac276efc7121ec9de91f092a986104.tar.gz |
Fixed #18659 -- Deprecated request.REQUEST and MergeDict
Thanks Aymeric Augustin for the suggestion.
Diffstat (limited to 'tests/utils_tests/test_datastructures.py')
-rw-r--r-- | tests/utils_tests/test_datastructures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_datastructures.py b/tests/utils_tests/test_datastructures.py index 5887cad085..4908957a19 100644 --- a/tests/utils_tests/test_datastructures.py +++ b/tests/utils_tests/test_datastructures.py @@ -136,7 +136,7 @@ class SortedDictTests(IgnorePendingDeprecationWarningsMixin, SimpleTestCase): self.assertEqual(list(reversed(self.d2)), [7, 0, 9, 1]) -class MergeDictTests(SimpleTestCase): +class MergeDictTests(IgnorePendingDeprecationWarningsMixin, SimpleTestCase): def test_simple_mergedict(self): d1 = {'chris':'cool', 'camri':'cute', 'cotton':'adorable', |