From c8330d4216e9f8e31c4e910a6bdf42f09458b2cd Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 2 Jan 2018 08:57:27 -0500 Subject: qa: Use node.datadir instead of tmpdir in test framework --- test/functional/feature_config_args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/feature_config_args.py') diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index c6cec0596b..e9b76a53e3 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -7,7 +7,7 @@ import os from test_framework.test_framework import BitcoinTestFramework -from test_framework.util import get_datadir_path + class ConfArgsTest(BitcoinTestFramework): def set_test_params(self): @@ -19,7 +19,7 @@ class ConfArgsTest(BitcoinTestFramework): # Remove the -datadir argument so it doesn't override the config file self.nodes[0].args = [arg for arg in self.nodes[0].args if not arg.startswith("-datadir")] - default_data_dir = get_datadir_path(self.options.tmpdir, 0) + default_data_dir = self.nodes[0].datadir new_data_dir = os.path.join(default_data_dir, 'newdatadir') new_data_dir_2 = os.path.join(default_data_dir, 'newdatadir2') -- cgit v1.2.3