diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-09-24 13:00:47 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-09-24 13:00:47 -0300 |
commit | a073ad8e329a3d90427737ca698e7acaa9d11b8d (patch) | |
tree | b69a9c14c9b4a9360e45247aa9be3d9cf23ea06b /src/leap/bitmask/config/tests/test_leapsettings.py | |
parent | f03e00f040c6372d26f40efb9864800809457baf (diff) |
Update standalone dependency usage.
Diffstat (limited to 'src/leap/bitmask/config/tests/test_leapsettings.py')
-rw-r--r-- | src/leap/bitmask/config/tests/test_leapsettings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/leap/bitmask/config/tests/test_leapsettings.py b/src/leap/bitmask/config/tests/test_leapsettings.py index 18166923..b45abfdd 100644 --- a/src/leap/bitmask/config/tests/test_leapsettings.py +++ b/src/leap/bitmask/config/tests/test_leapsettings.py @@ -29,6 +29,7 @@ import mock from leap.common.testing.basetest import BaseLeapTest from leap.bitmask.config.leapsettings import LeapSettings +from leap.bitmask.config import flags class LeapSettingsTest(BaseLeapTest): @@ -44,6 +45,7 @@ class LeapSettingsTest(BaseLeapTest): """ Test that the config file IS NOT stored under the CWD. """ + flags.STANDALONE = False self._leapsettings = LeapSettings() with mock.patch('os.listdir') as os_listdir: # use this method only to spy where LeapSettings is looking for @@ -57,7 +59,8 @@ class LeapSettingsTest(BaseLeapTest): """ Test that the config file IS stored under the CWD. """ - self._leapsettings = LeapSettings(standalone=True) + flags.STANDALONE = True + self._leapsettings = LeapSettings() with mock.patch('os.listdir') as os_listdir: # use this method only to spy where LeapSettings is looking for self._leapsettings.get_configured_providers() |