diff --git a/tests/test_jsonrpcdaemon.py b/tests/test_jsonrpcdaemon.py index cfdf149..c7b1aa3 100644 --- a/tests/test_jsonrpcdaemon.py +++ b/tests/test_jsonrpcdaemon.py @@ -148,7 +148,7 @@ class JSONRPCDaemonTestCase(JSONTestCase): self.assertEqual(len(blk.transactions), 105) self.assertEqual(len(set(blk.transactions)), 105) - def test_init(self): + def test_init_default_backend(self): daemon1 = Daemon(host='localhost') daemon2 = Daemon() diff --git a/tests/test_jsonrpcwallet.py b/tests/test_jsonrpcwallet.py index 1e30118..79fb571 100644 --- a/tests/test_jsonrpcwallet.py +++ b/tests/test_jsonrpcwallet.py @@ -1243,7 +1243,7 @@ class JSONRPCWalletTestCase(JSONTestCase): self.assertEqual(len(pmts), 1) @responses.activate - def test_init(self): + def test_init_default_backend(self): responses.add(responses.POST, self.jsonrpc_url, json=self._read('test_incoming_from_self__issue_71-00-get_accounts.json'), status=200)