diff options
author | Duda Dornelles <dudassdornelles@gmail.com> | 2015-01-22 15:50:36 -0200 |
---|---|---|
committer | Pixpoa pairing <pixpoapairing@pixelated-project.org> | 2015-01-22 16:50:53 -0200 |
commit | 86ed99a7d78e4690d103f4334dc0eef03c47e402 (patch) | |
tree | dafd5d0aca3efb6f3c8afdc755c88423fba5991f /service/test/functional | |
parent | 81552abcfe67f61b68ad7cbf424738f7788f148c (diff) |
#224 fixing tests and app for twisted migration
Diffstat (limited to 'service/test/functional')
-rw-r--r-- | service/test/functional/features/environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/test/functional/features/environment.py b/service/test/functional/features/environment.py index e4c4fa0c..5e93c840 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -19,14 +19,14 @@ from test.support.dispatcher.proxy import Proxy from test.support.integration import AppTestClient from selenium import webdriver -from pixelated.resources.features_resource import FeaturesController +from pixelated.resources.features_resource import FeaturesResource def before_all(context): logging.disable('INFO') client = AppTestClient() proxy = Proxy(proxy_port='8889', app_port='4567') - FeaturesController.DISABLED_FEATURES.append('autoRefresh') + FeaturesResource.DISABLED_FEATURES.append('autoRefresh') context.client = client context.call_to_terminate_proxy = proxy.run_on_a_thread() context.call_to_terminate = client.run_on_a_thread(logfile='/tmp/behave-tests.log') |