You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2013/10/07 00:09:04 UTC

git commit: Change the regex to account for 1) international messages (FR for hboutemy) and 2) Different HTTP providers specifically non-Wagon.

Updated Branches:
  refs/heads/master ae5a37900 -> 78caa74ae


Change the regex to account for 1) international messages (FR for hboutemy) and 2) Different HTTP providers specifically non-Wagon.


Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/78caa74a
Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/78caa74a
Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/78caa74a

Branch: refs/heads/master
Commit: 78caa74ae3c682e25a62f68d91f9af86c9d32f9f
Parents: ae5a379
Author: Jason van Zyl <ja...@tesla.io>
Authored: Sun Oct 6 18:04:51 2013 -0400
Committer: Jason van Zyl <ja...@tesla.io>
Committed: Sun Oct 6 18:04:51 2013 -0400

----------------------------------------------------------------------
 .../it/MavenITmng3477DependencyResolutionErrorMessageTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/78caa74a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3477DependencyResolutionErrorMessageTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3477DependencyResolutionErrorMessageTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3477DependencyResolutionErrorMessageTest.java
index 95d33d2..d9c6519 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3477DependencyResolutionErrorMessageTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3477DependencyResolutionErrorMessageTest.java
@@ -63,7 +63,7 @@ public class MavenITmng3477DependencyResolutionErrorMessageTest
             List<String> lines = verifier.loadLines( verifier.getLogFileName(), "UTF-8" );
             for ( String line : lines )
             {
-                if ( line.matches( ".*org.apache.maven.its.mng3477:dep:jar:1.0.*Connection refused.*" ) )
+                if ( line.matches( ".*org.apache.maven.its.mng3477:dep:jar:1.0.*Connection.*refused.*" ) )
                 {
                     foundCause = true;
                     break;