From ee9a2e4271153344b70005558698c2a3902481c8 Mon Sep 17 00:00:00 2001 From: Suhas Daftuar Date: Wed, 27 May 2015 10:00:15 -0400 Subject: [PATCH] Fix walletbackup.py after directory restructuring Also add walletbackup.py to rpc-tests.sh --- qa/pull-tester/rpc-tests.sh | 1 + qa/rpc-tests/walletbackup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index 8ed94264..88772a9c 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -31,6 +31,7 @@ testScripts=( 'proxy_test.py' 'merkle_blocks.py' 'signrawtransactions.py' + 'walletbackup.py' ); testScriptsExt=( 'bipdersig-p2p.py' diff --git a/qa/rpc-tests/walletbackup.py b/qa/rpc-tests/walletbackup.py index b9fc8622..da100d7f 100755 --- a/qa/rpc-tests/walletbackup.py +++ b/qa/rpc-tests/walletbackup.py @@ -33,8 +33,8 @@ Shutdown again, restore using importwallet, and confirm again balances are correct. """ -from test_framework import BitcoinTestFramework -from util import * +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import * from random import randint import logging logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.INFO)