diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-12-19 17:48:25 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-12-19 17:48:39 +0100 |
| commit | 94736e312e27ea7bddd3955d0e5041c87e0ea077 (patch) | |
| tree | f486ac74a4b80c7f7c2021c1b0094bddac15fb9a | |
| parent | Remove outdated comment about NTP (diff) | |
| parent | [QA] fix httpbasics RPC test typo (diff) | |
| download | discoin-94736e312e27ea7bddd3955d0e5041c87e0ea077.tar.xz discoin-94736e312e27ea7bddd3955d0e5041c87e0ea077.zip | |
Merge pull request #5504
7a3b832 [QA] fix httpbasics RPC test typo (Jonas Schnelli)
| -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 () |