diff options
| author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-07-29 14:56:14 +0200 | 
|---|---|---|
| committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-08-11 17:00:29 +0200 | 
| commit | 7b15f5af69b488f3e90f6716a910f2bd5498e0a1 (patch) | |
| tree | c02aa5524304533819b195485416906022ab6ce8 | |
| parent | 90b304517f6f989b81375a2a71080e8fe853578a (diff) | |
Fixed pep8 warnings in environment.py.
- Issue #420
| -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 4967a356..e598ee67 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -17,14 +17,14 @@ import logging  import uuid  from crochet import setup, wait_for -setup() -  from test.support.dispatcher.proxy import Proxy  from test.support.integration import AppTestClient  from selenium import webdriver  from pixelated.resources.features_resource import FeaturesResource +setup() +  @wait_for(timeout=5.0)  def start_app_test_client(client): | 
