From f878c9e05ecf77e2ddaf3b9539489096e5c62b78 Mon Sep 17 00:00:00 2001 From: SirSevenG Date: Wed, 31 Jul 2019 23:35:54 +0700 Subject: [PATCH] More fixes less TODOs --- qa/rpc-tests/nspv_client_test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/qa/rpc-tests/nspv_client_test.py b/qa/rpc-tests/nspv_client_test.py index aecff3696..aecc05fb7 100644 --- a/qa/rpc-tests/nspv_client_test.py +++ b/qa/rpc-tests/nspv_client_test.py @@ -17,8 +17,7 @@ chain = 'ILN' rpc_proxy = tuilib.def_credentials(chain) -# TODO: recheck nspv_login_timeout, nspv_notarizations -# TODO: add brand new methods, add one-utxo-only addr for test purpose +# TODO: add brand new methods, add one-utxo-only addr for test purpose, recheck test once more at least class TestNspvClient(unittest.TestCase): @@ -107,7 +106,7 @@ class TestNspvClient(unittest.TestCase): def test_nspv_login_timout(self): print("testing auto-logout in 777 seconds") rpc_proxy.nspv_login(wif) - time.sleep(777) + time.sleep(778) result = rpc_proxy.nspv_spend(dest_address, amount) self.assertEqual(result["result"], "error") self.assertEqual(result["error"], "wif expired")