diff options
| author | Jonas Schnelli <[email protected]> | 2014-12-17 22:37:54 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2014-12-17 22:40:20 +0100 |
| commit | 7a3b83269ec26612aa3399ae3f978264996c32fd (patch) | |
| tree | f265aef05a2bb03379e7bb85a8ae7c207a27fb71 /qa/rpc-tests/httpbasics.py | |
| parent | Merge pull request #5484 (diff) | |
| download | discoin-7a3b83269ec26612aa3399ae3f978264996c32fd.tar.xz discoin-7a3b83269ec26612aa3399ae3f978264996c32fd.zip | |
[QA] fix httpbasics RPC test typo
Diffstat (limited to 'qa/rpc-tests/httpbasics.py')
| -rwxr-xr-x | qa/rpc-tests/httpbasics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/httpbasics.py b/qa/rpc-tests/httpbasics.py index a94edaffa..85e85e7f0 100755 --- a/qa/rpc-tests/httpbasics.py +++ b/qa/rpc-tests/httpbasics.py @@ -20,7 +20,7 @@ try: except ImportError: import urlparse -class RESTTest (BitcoinTestFramework): +class HTTPBasicsTest (BitcoinTestFramework): def run_test(self): ################################################# @@ -73,4 +73,4 @@ class RESTTest (BitcoinTestFramework): if __name__ == '__main__': - RESTTest ().main () + HTTPBasicsTest ().main () |