Skip to content

Commit

Permalink
pep8 all the things
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Oct 22, 2011
1 parent 77909f1 commit d552e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_requests.py
Expand Up @@ -17,7 +17,6 @@
import json



# TODO: Detect an open port.
PORT = os.environ.get('HTTPBIN_PORT', '7077')

Expand Down Expand Up @@ -47,8 +46,9 @@ def setUp(self):

if not _httpbin:

self.httpbin = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:%s' % (PORT))
c = envoy.connect('gunicorn httpbin:app --bind=0.0.0.0:%s' % (PORT))

self.httpbin = c
_httpbin = True
time.sleep(1)

Expand Down

0 comments on commit d552e6c

Please sign in to comment.