You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sc...@apache.org on 2016/01/30 22:59:25 UTC

maven-integration-testing git commit: o Updated to correct regular expression.

Repository: maven-integration-testing
Updated Branches:
  refs/heads/master 38d24683a -> a7d4dc538


o Updated to correct regular expression.


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/a7d4dc53
Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/a7d4dc53
Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/a7d4dc53

Branch: refs/heads/master
Commit: a7d4dc5383cb25ef55aaf91a0c070e0e19c3d964
Parents: 38d2468
Author: Christian Schulte <sc...@apache.org>
Authored: Sat Jan 30 22:58:37 2016 +0100
Committer: Christian Schulte <sc...@apache.org>
Committed: Sat Jan 30 22:58:37 2016 +0100

----------------------------------------------------------------------
 .../org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/a7d4dc53/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java
index 9a5a03f..b4d7a89 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2199ParentVersionRangeTest.java
@@ -101,7 +101,7 @@ public class MavenITmng2199ParentVersionRangeTest
         {
             final List<String> lines = verifier.loadFile( new File( testDir, "log.txt" ), false );
             assertTrue( "Expected error message not found.",
-                        indexOf( lines, ".*(parent)? version range.*does not specify an upper bound.*" ) >= 0 );
+                        indexOf( lines, ".*(parent)?.*version range.*does not specify an upper bound.*" ) >= 0 );
 
         }
         finally