aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-12-19 17:48:25 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-12-19 17:48:39 +0100
commit94736e312e27ea7bddd3955d0e5041c87e0ea077 (patch)
treef486ac74a4b80c7f7c2021c1b0094bddac15fb9a
parent6e718f94358bd023e5867d94c683a5635a1ff3f9 (diff)
parent7a3b83269ec26612aa3399ae3f978264996c32fd (diff)
downloadbitcoin-94736e312e27ea7bddd3955d0e5041c87e0ea077.tar.xz
Merge pull request #5504
7a3b832 [QA] fix httpbasics RPC test typo (Jonas Schnelli)
-rwxr-xr-xqa/rpc-tests/httpbasics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/httpbasics.py b/qa/rpc-tests/httpbasics.py
index a94edaffa5..85e85e7f0f 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 ()