diff options
| author | Jonas Schnelli <[email protected]> | 2015-05-02 12:53:35 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-05-18 15:25:45 +0200 |
| commit | 64937fe51acc269fc96b784fc97bd4cfe3c1d072 (patch) | |
| tree | e665ff0ccf03aa88847d9ecbfb9fb5f6ef6bbca8 /qa/rpc-tests/keypool.py | |
| parent | Merge pull request #6126 (diff) | |
| download | discoin-64937fe51acc269fc96b784fc97bd4cfe3c1d072.tar.xz discoin-64937fe51acc269fc96b784fc97bd4cfe3c1d072.zip | |
[QA] restructure rpc tests directory
* move non-test classes to subdir `test-framework`
Diffstat (limited to 'qa/rpc-tests/keypool.py')
| -rwxr-xr-x | qa/rpc-tests/keypool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/keypool.py b/qa/rpc-tests/keypool.py index 3840ea39d..307919d72 100755 --- a/qa/rpc-tests/keypool.py +++ b/qa/rpc-tests/keypool.py @@ -8,7 +8,7 @@ # Add python-bitcoinrpc to module search path: import os import sys -sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc")) +sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_framework/python-bitcoinrpc")) import json import shutil @@ -17,7 +17,7 @@ import tempfile import traceback from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException -from util import * +from test_framework.util import * def check_array_result(object_array, to_match, expected): |