aboutsummaryrefslogtreecommitdiff
path: root/test/functional/zmq_test.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-06-07 15:45:03 -0400
committerJohn Newbery <john@johnnewbery.com>2017-06-08 09:20:53 -0400
commit4a0c08fdcf0776fe565d958547796f6a78f415f1 (patch)
tree5eaa77641b5a0dc019f0cf1af64ea19d8068ca10 /test/functional/zmq_test.py
parent9c248e39f2807a7f89e555e99cc55cb2de1ad335 (diff)
downloadbitcoin-4a0c08fdcf0776fe565d958547796f6a78f415f1.tar.xz
[tests] update zmq test to use correct config.ini file
Diffstat (limited to 'test/functional/zmq_test.py')
-rwxr-xr-xtest/functional/zmq_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/zmq_test.py b/test/functional/zmq_test.py
index ce39cfefdc..ca89e200ed 100755
--- a/test/functional/zmq_test.py
+++ b/test/functional/zmq_test.py
@@ -28,7 +28,7 @@ class ZMQTest (BitcoinTestFramework):
# Check that bitcoin has been built with ZMQ enabled
config = configparser.ConfigParser()
if not self.options.configfile:
- self.options.configfile = os.path.dirname(__file__) + "/config.ini"
+ self.options.configfile = os.path.dirname(__file__) + "/../config.ini"
config.read_file(open(self.options.configfile))
if not config["components"].getboolean("ENABLE_ZMQ"):