diff options
Diffstat (limited to 'service/test/support/integration/soledad_test_base.py')
| -rw-r--r-- | service/test/support/integration/soledad_test_base.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/service/test/support/integration/soledad_test_base.py b/service/test/support/integration/soledad_test_base.py index 979b1f96..5fed3a12 100644 --- a/service/test/support/integration/soledad_test_base.py +++ b/service/test/support/integration/soledad_test_base.py @@ -15,6 +15,7 @@  # along with Pixelated. If not, see <http://www.gnu.org/licenses/>.  from twisted.trial import unittest  from test.support.integration.app_test_client import AppTestClient +from leap.common.events.flags import set_events_enabled  class SoledadTestBase(unittest.TestCase, AppTestClient): @@ -23,7 +24,9 @@ class SoledadTestBase(unittest.TestCase, AppTestClient):      DEFERRED_TIMEOUT_LONG = 300      def setUp(self): +        set_events_enabled(False)          return self.start_client()      def tearDown(self): +        set_events_enabled(True)          self.cleanup() | 
