summaryrefslogtreecommitdiff
path: root/pbr/tests/test_wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'pbr/tests/test_wsgi.py')
-rw-r--r--pbr/tests/test_wsgi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbr/tests/test_wsgi.py b/pbr/tests/test_wsgi.py
index f840610..18732f7 100644
--- a/pbr/tests/test_wsgi.py
+++ b/pbr/tests/test_wsgi.py
@@ -77,8 +77,8 @@ class TestWsgiScripts(base.BaseTestCase):
def _test_wsgi(self, cmd_name, output, extra_args=None):
cmd = os.path.join(self.temp_dir, 'bin', cmd_name)
- print("Running %s -p 0" % cmd)
- popen_cmd = [cmd, '-p', '0']
+ print("Running %s -p 0 -b 127.0.0.1" % cmd)
+ popen_cmd = [cmd, '-p', '0', '-b', '127.0.0.1']
if extra_args:
popen_cmd.extend(extra_args)