diff options
| author | John Newbery <[email protected]> | 2017-06-07 15:45:03 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-06-08 09:20:53 -0400 |
| commit | 4a0c08fdcf0776fe565d958547796f6a78f415f1 (patch) | |
| tree | 5eaa77641b5a0dc019f0cf1af64ea19d8068ca10 | |
| parent | Merge #10481: Decodehextx scripts sanity check (diff) | |
| download | discoin-4a0c08fdcf0776fe565d958547796f6a78f415f1.tar.xz discoin-4a0c08fdcf0776fe565d958547796f6a78f415f1.zip | |
[tests] update zmq test to use correct config.ini file
| -rwxr-xr-x | test/functional/zmq_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/zmq_test.py b/test/functional/zmq_test.py index ce39cfefd..ca89e200e 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"): |