summaryrefslogtreecommitdiff
path: root/service/test/support/integration/soledad_test_base.py
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2015-07-29 17:11:51 -0300
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:30 +0200
commit5d45904c0d26045bc5174210577527506997b16b (patch)
tree0fd9739de5107581359faeafc67fde0267434390 /service/test/support/integration/soledad_test_base.py
parent8f8c3f3d62293a6fca4abb85d71041531dc74408 (diff)
move events diabling to AppTestClient for functional tests
Diffstat (limited to 'service/test/support/integration/soledad_test_base.py')
-rw-r--r--service/test/support/integration/soledad_test_base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/service/test/support/integration/soledad_test_base.py b/service/test/support/integration/soledad_test_base.py
index 5fed3a12..979b1f96 100644
--- a/service/test/support/integration/soledad_test_base.py
+++ b/service/test/support/integration/soledad_test_base.py
@@ -15,7 +15,6 @@
# 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):
@@ -24,9 +23,7 @@ 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()