Issue #11434 - remove printlns in AliasCheckerSymlinkTest
Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
This commit is contained in:
parent
178a795f93
commit
96a0468436
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue