aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-04-19 11:14:53 -0400
committerJohn Newbery <john@johnnewbery.com>2017-04-19 13:47:56 -0400
commite367ad5b441d44479d40d6b04a270a571d073a65 (patch)
treec7ba4de0354e8cc7031df4f36681a4d404608103 /test/functional
parentd6564a26f4afc28d7d1a24b94946916387c9bf24 (diff)
downloadbitcoin-e367ad5b441d44479d40d6b04a270a571d073a65.tar.xz
[tests] rename nodehandling to disconnectban
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/disconnect_ban.py (renamed from test/functional/nodehandling.py)6
-rwxr-xr-xtest/functional/test_runner.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/nodehandling.py b/test/functional/disconnect_ban.py
index 2124069d0f..458b66af03 100755
--- a/test/functional/nodehandling.py
+++ b/test/functional/disconnect_ban.py
@@ -2,7 +2,7 @@
# Copyright (c) 2014-2016 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
-"""Test node handling."""
+"""Test node disconnect and ban behavior"""
import time
import urllib.parse
@@ -15,7 +15,7 @@ from test_framework.util import (assert_equal,
stop_node,
)
-class NodeHandlingTest(BitcoinTestFramework):
+class DisconnectBanTest(BitcoinTestFramework):
def __init__(self):
super().__init__()
@@ -83,4 +83,4 @@ class NodeHandlingTest(BitcoinTestFramework):
assert(found)
if __name__ == '__main__':
- NodeHandlingTest().main()
+ DisconnectBanTest().main()
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index bb12328ec1..0868700387 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -80,7 +80,7 @@ BASE_SCRIPTS= [
'multi_rpc.py',
'proxy_test.py',
'signrawtransactions.py',
- 'nodehandling.py',
+ 'disconnect_ban.py',
'decodescript.py',
'blockchain.py',
'disablewallet.py',