summaryrefslogtreecommitdiff
path: root/tests/unit/test_service.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/test_service.py')
-rw-r--r--tests/unit/test_service.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/test_service.py b/tests/unit/test_service.py
index c478351..3267cd6 100644
--- a/tests/unit/test_service.py
+++ b/tests/unit/test_service.py
@@ -390,11 +390,13 @@ class TestSwiftError(testtools.TestCase):
self.assertEqual(str(se), '5 container:con object:obj segment:seg')
-@mock.patch.dict(os.environ, clean_os_environ)
class TestServiceUtils(testtools.TestCase):
def setUp(self):
super(TestServiceUtils, self).setUp()
+ with mock.patch.dict(swiftclient.service.environ, clean_os_environ):
+ swiftclient.service._default_global_options = \
+ swiftclient.service._build_default_global_options()
self.opts = swiftclient.service._default_global_options.copy()
def test_process_options_defaults(self):