From 4a0c08fdcf0776fe565d958547796f6a78f415f1 Mon Sep 17 00:00:00 2001 From: John Newbery Date: Wed, 7 Jun 2017 15:45:03 -0400 Subject: [PATCH] [tests] update zmq test to use correct config.ini file --- test/functional/zmq_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/zmq_test.py b/test/functional/zmq_test.py index ce39cfefdc9..ca89e200ed3 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"):