Fixed timeout value left over during debugging.

This commit is contained in:
Simone Bordet 2014-04-08 13:58:21 +02:00
parent 74d66a87f6
commit 8e24cdf913
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ public class HttpClientTest extends AbstractHttpClientServerTest
ContentResponse response = client.POST(scheme + "://localhost:" + connector.getLocalPort() + "/?b=1")
.param(paramName, paramValue)
.content(new BytesContentProvider(content))
.timeout(555, TimeUnit.SECONDS)
.timeout(5, TimeUnit.SECONDS)
.send();
Assert.assertNotNull(response);