Merge "Tests: Don't require binding to port 4444"

This commit is contained in:
Jenkins 2015-02-13 21:50:45 +00:00 committed by Gerrit Code Review
commit a018826f40
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class TestWSGIServer(test.NoDBTestCase):
def test_server_pool_waitall(self):
# test pools waitall method gets called while stopping server
server = nova.wsgi.Server("test_server", None,
host="127.0.0.1", port=4444)
host="127.0.0.1")
server.start()
with mock.patch.object(server._pool,
'waitall') as mock_waitall: