Skip to content
Snippets Groups Projects
Commit 8e4ce7ca authored by Holger's avatar Holger
Browse files

Fix account unit test for py27

parent 2e8ee50d
No related branches found
No related tags found
No related merge requests found
......@@ -478,7 +478,8 @@ class Testcases(unittest.TestCase):
for k in keys:
if k not in "json_metadata" and k != 'reputation' and k != 'active_votes' and k != 'savings_sbd_seconds':
if isinstance(content[k], dict) and isinstance(json_content[k], list):
self.assertEqual(list(content[k].values()), json_content[k])
content_list = [content[k]["amount"], content[k]["precision"], content[k]["nai"]]
self.assertEqual(content_list, json_content[k])
else:
self.assertEqual(content[k], json_content[k])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment