Skip to content

Commit d6320c4

Browse files
fix checkstyle violation
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
1 parent b89398d commit d6320c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test-distribution/src/test/java/org/eclipse/jetty/tests/distribution/DistributionTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1401,13 +1401,13 @@ public void testInetAccessHandler() throws Exception
14011401
startHttpClient();
14021402

14031403
// Excluded path returns 403 response.
1404-
ContentResponse response = client.newRequest("http://localhost:" + httpPort +"/excludedPath")
1404+
ContentResponse response = client.newRequest("http://localhost:" + httpPort + "/excludedPath")
14051405
.timeout(15, TimeUnit.SECONDS)
14061406
.send();
14071407
assertEquals(HttpStatus.FORBIDDEN_403, response.getStatus());
14081408

14091409
// Other paths return 404 response.
1410-
response = client.newRequest("http://localhost:" + httpPort +"/path")
1410+
response = client.newRequest("http://localhost:" + httpPort + "/path")
14111411
.timeout(15, TimeUnit.SECONDS)
14121412
.send();
14131413
assertEquals(HttpStatus.NOT_FOUND_404, response.getStatus());

0 commit comments

Comments
 (0)