Skip to content
Snippets Groups Projects
Commit 938fd95a authored by Holger's avatar Holger
Browse files

Fix unit test

parent 84137694
No related branches found
No related tags found
No related merge requests found
...@@ -101,12 +101,11 @@ class Testcases(unittest.TestCase): ...@@ -101,12 +101,11 @@ class Testcases(unittest.TestCase):
bts = self.appbase bts = self.appbase
b = Blockchain(steem_instance=bts) b = Blockchain(steem_instance=bts)
accounts = [] accounts = []
for acc in b.get_all_accounts(steps=100, limit=100): limit = 200
for acc in b.get_all_accounts(steps=100, limit=limit):
accounts.append(acc) accounts.append(acc)
self.assertEqual(len(accounts), 100) self.assertEqual(len(accounts), limit)
limit = 5000 self.assertEqual(len(set(accounts)), limit)
self.assertEqual(len(list(b.get_all_accounts(limit=limit))), limit)
self.assertEqual(len(set(b.get_all_accounts(limit=limit))), limit)
@parameterized.expand([ @parameterized.expand([
("non_appbase"), ("non_appbase"),
......
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