Issue #11434 - remove printlns in AliasCheckerSymlinkTest

Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
This commit is contained in:
Lachlan Roberts 2024-08-29 08:47:49 +10:00
parent 178a795f93
commit 96a0468436
No known key found for this signature in database
GPG Key ID: 5663FB7A8FF7E348
2 changed files with 0 additions and 4 deletions

View File

@ -296,11 +296,9 @@ public class AliasCheckerSymlinkTest
@MethodSource("combinedResourceTestCases")
public void testCombinedResource(AliasCheck aliasChecker, String path, int httpStatus, String responseContent) throws Exception
{
System.err.printf("path:%s, status:%s, content:%s%n", path, httpStatus, responseContent);
setAliasChecker(_context2, aliasChecker);
URI uri = URI.create("http://localhost:" + _connector.getLocalPort() + path);
ContentResponse response = _client.GET(uri);
System.err.println(response.getContentAsString());
assertThat(response.getStatus(), is(httpStatus));
if (responseContent != null)

View File

@ -296,11 +296,9 @@ public class AliasCheckerSymlinkTest
@MethodSource("combinedResourceTestCases")
public void testCombinedResource(AliasCheck aliasChecker, String path, int httpStatus, String responseContent) throws Exception
{
System.err.printf("path:%s, status:%s, content:%s%n", path, httpStatus, responseContent);
setAliasChecker(_context2, aliasChecker);
URI uri = URI.create("http://localhost:" + _connector.getLocalPort() + path);
ContentResponse response = _client.GET(uri);
System.err.println(response.getContentAsString());
assertThat(response.getStatus(), is(httpStatus));
if (responseContent != null)