Skip to content

Commit

Permalink
Fixed tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaccamo committed Dec 22, 2020
1 parent d9ada43 commit 05ccdfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/github/test_issue_0046.py
Expand Up @@ -75,7 +75,7 @@ def test_json_dumps_with_cloned_instance(self):
d_new_raw = {'id': '37e4f6e876', 'meta': {'k0': {'kc': {'extra_key2': 'value2', 'key1': '', 'key2': 'value2', 'key3': 'value3', 'key4': True}}, 'language': 'en'}}
d_new_json = json.dumps(d_new_raw, sort_keys=True)
self.assertEqual(d_new, d_new_raw)
self.assertEqual(d_new.to_json(), d_new_json)
self.assertEqual(d_new.to_json(sort_keys=True), d_new_json)

d_new2 = d_new.clone()
self.assertEqual(d_new, d_new2)
Expand Down

0 comments on commit 05ccdfc

Please sign in to comment.