From a30ff4ddc94b95b8a8af94a5e0772c038b140e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Mon, 18 Jan 2021 10:16:28 +0100 Subject: [PATCH] Put more elaborate test names --- tests/test_jsonrpcdaemon.py | 2 +- tests/test_jsonrpcwallet.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)