diff options
| author | shanghui <shangdahao@gmail.com> | 2017-09-01 14:26:09 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-11-11 19:45:23 -0500 |
| commit | 1907fc9b1292a55f1b8d54f4dbcdbda16bbb36c1 (patch) | |
| tree | aee0976a973ccfff14450c079d61772e488dcc33 /tests/postgres_tests/test_json.py | |
| parent | bdb747a5f2ffe7356c722c67184a2bc1e24c7f73 (diff) | |
Fixed #28534 -- Made JSONField.has_changed() ignore key order and consider True/1 values as different.
Diffstat (limited to 'tests/postgres_tests/test_json.py')
| -rw-r--r-- | tests/postgres_tests/test_json.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/postgres_tests/test_json.py b/tests/postgres_tests/test_json.py index acbd855f1a..a572e670ac 100644 --- a/tests/postgres_tests/test_json.py +++ b/tests/postgres_tests/test_json.py @@ -410,3 +410,8 @@ class TestFormField(PostgreSQLTestCase): for json_string in tests: val = field.clean(json_string) self.assertEqual(field.clean(val), val) + + def test_has_changed(self): + field = forms.JSONField() + self.assertIs(field.has_changed({'a': True}, '{"a": 1}'), True) + self.assertIs(field.has_changed({'a': 1, 'b': 2}, '{"b": 2, "a": 1}'), False) |
