Skip to content
Snippets Groups Projects
Commit 817c49bc authored by Holger's avatar Holger
Browse files

Fix unit test

parent 1566e8b0
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
...@@ -32,7 +32,7 @@ class Testcases(unittest.TestCase): ...@@ -32,7 +32,7 @@ class Testcases(unittest.TestCase):
acc = Account("fullnodeupdate", steem_instance=cls.bts) acc = Account("fullnodeupdate", steem_instance=cls.bts)
n_votes = 0 n_votes = 0
index = 0 index = 0
entries = acc.get_blog_entries(limit=30)[::-1] entries = acc.get_blog(limit=20)[::-1]
while n_votes == 0: while n_votes == 0:
comment = Comment(entries[index], steem_instance=cls.bts) comment = Comment(entries[index], steem_instance=cls.bts)
votes = comment.get_votes() votes = comment.get_votes()
......
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