File tree 1 file changed +2
-2
lines changed
tests/test-distribution/src/test/java/org/eclipse/jetty/tests/distribution
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1401,13 +1401,13 @@ public void testInetAccessHandler() throws Exception
1401
1401
startHttpClient ();
1402
1402
1403
1403
// Excluded path returns 403 response.
1404
- ContentResponse response = client .newRequest ("http://localhost:" + httpPort +"/excludedPath" )
1404
+ ContentResponse response = client .newRequest ("http://localhost:" + httpPort + "/excludedPath" )
1405
1405
.timeout (15 , TimeUnit .SECONDS )
1406
1406
.send ();
1407
1407
assertEquals (HttpStatus .FORBIDDEN_403 , response .getStatus ());
1408
1408
1409
1409
// Other paths return 404 response.
1410
- response = client .newRequest ("http://localhost:" + httpPort +"/path" )
1410
+ response = client .newRequest ("http://localhost:" + httpPort + "/path" )
1411
1411
.timeout (15 , TimeUnit .SECONDS )
1412
1412
.send ();
1413
1413
assertEquals (HttpStatus .NOT_FOUND_404 , response .getStatus ());
You can’t perform that action at this time.
0 commit comments