From a6284119884cb5005188f31f2543b05861c2e6ba Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 1 Feb 2018 15:47:32 -0700 Subject: [PATCH] basedir fixup --- src/allmydata/test/test_tor_provider.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/test/test_tor_provider.py b/src/allmydata/test/test_tor_provider.py index 68f3f09f0..aabb65bb7 100644 --- a/src/allmydata/test/test_tor_provider.py +++ b/src/allmydata/test/test_tor_provider.py @@ -515,7 +515,7 @@ class Provider_Service(unittest.TestCase): txtorcon = mock.Mock() with mock_txtorcon(txtorcon): - p = tor_provider.create(reactor, basedir, cfg) + p = tor_provider.create(reactor, cfg) tor_state = mock.Mock() tor_state.protocol = object() ehs = mock.Mock() @@ -556,7 +556,7 @@ class Provider_Service(unittest.TestCase): txtorcon = mock.Mock() with mock_txtorcon(txtorcon): - p = tor_provider.create(reactor, basedir, cfg) + p = tor_provider.create(reactor, cfg) tor_state = mock.Mock() tor_state.protocol = object() txtorcon.build_tor_connection = mock.Mock(return_value=tor_state)