Skip to content
Snippets Groups Projects
Commit 7728235b authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

fix unit tests for python 3.4 and 3.5

parent 66ded345
No related branches found
No related tags found
No related merge requests found
...@@ -45,8 +45,10 @@ class Testcases(unittest.TestCase): ...@@ -45,8 +45,10 @@ class Testcases(unittest.TestCase):
c = Comment("@gtg/witness-gtg-log", steem_instance=bts) c = Comment("@gtg/witness-gtg-log", steem_instance=bts)
keys = content.keys() keys = content.keys()
json_content = c.json() json_content = c.json()
for k in keys: for k in keys:
self.assertEqual(content[k], json_content[k]) if k not in "json_metadata":
self.assertEqual(content[k], json_content[k])
def test_resteem(self): def test_resteem(self):
bts = self.bts bts = self.bts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment