This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch MNG-5728 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
The following commit(s) were added to refs/heads/MNG-5728 by this push: new 8cfadfe Fix case 8cfadfe is described below commit 8cfadfe4d45104fc9a51f285611ed9c9c63fef4d Author: Michael Osipov <micha...@apache.org> AuthorDate: Mon Nov 30 17:01:24 2020 +0100 Fix case --- .../org/apache/maven/it/MavenITmng3599useHttpProxyForWebDAVTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3599useHttpProxyForWebDAVTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3599useHttpProxyForWebDAVTest.java index e3714fe..84fc394 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3599useHttpProxyForWebDAVTest.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3599useHttpProxyForWebDAVTest.java @@ -99,7 +99,7 @@ public class MavenITmng3599useHttpProxyForWebDAVTest ) { response.setStatus( HttpServletResponse.SC_OK ); - response.getWriter().print( content ); + response.getWriter().print( CONTENT ); System.out.println( "Correct proxied request 'http://www.example.com' for resource '/org/apache/maven/its/mng3599/test-dependency' found." ); }