Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Jun 6, 2018
1 parent 46f0a76 commit 6f49a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/beemapi/test_steemnoderpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Testcases(unittest.TestCase):
@classmethod
def setUpClass(cls):
nodelist = NodeList()
nodelist.update_nodes(steem_instance=Steem(node=nodelist.get_nodes(normal=True, appbase=True), num_retries=10))
nodelist.update_nodes(steem_instance=Steem(node=nodelist.get_nodes(normal=True, appbase=True), num_retries=3))
cls.nodes = nodelist.get_nodes(https=False, appbase=False)
cls.nodes_https = nodelist.get_nodes(wss=False, appbase=False)
cls.nodes_appbase = nodelist.get_nodes(normal=False)
Expand Down Expand Up @@ -215,4 +215,4 @@ def test_error_handling_appbase(self):
with self.assertRaises(
exceptions.UnhandledRPCError
):
rpc.get_block({"block_num": 0}, api="block")
rpc.get_block("abcde", api="block")

0 comments on commit 6f49a11

Please sign in to comment.