From ea619ce99a4e058ebd3d3dfff499e49addd40ab3 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Mon, 16 Jul 2018 01:56:19 +0200 Subject: [PATCH] Fix tor disabling for tests --- src/Test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/conftest.py b/src/Test/conftest.py index 59baddcc..b38c5f7e 100644 --- a/src/Test/conftest.py +++ b/src/Test/conftest.py @@ -62,7 +62,7 @@ config.parse() # Parse again to add plugin configuration options config.data_dir = "src/Test/testdata" # Use test data for unittests config.debug_socket = True # Use test data for unittests config.verbose = True # Use test data for unittests -config.tor = "disabled" # Don't start Tor client +config.tor = "disable" # Don't start Tor client config.trackers = [] os.chdir(os.path.abspath(os.path.dirname(__file__) + "/../..")) # Set working dir