You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2008/11/16 10:05:28 UTC

svn commit: r717993 - /maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy

Author: olamy
Date: Sun Nov 16 01:05:28 2008
New Revision: 717993

URL: http://svn.apache.org/viewvc?rev=717993&view=rev
Log:
fix syntax even if groovy didn't complaints

Modified:
    maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy

Modified: maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy?rev=717993&r1=717992&r2=717993&view=diff
==============================================================================
--- maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy (original)
+++ maven/plugins/trunk/maven-resources-plugin/src/it/MRESOURCES-78/verify.groovy Sun Nov 16 01:05:28 2008
@@ -21,5 +21,5 @@
 
 filteredContent = new File(basedir, 'target/classes/filtered.properties').text;
 assert content.contains( 'bar=this is bar');
-assert content.contains( 'escaped=\${escaped}');
-assert content.contains( 'escaped.at=\@escaped.at@');
\ No newline at end of file
+assert content.contains( 'escaped=\\${escaped}');
+assert content.contains( 'escaped.at=\\@escaped.at@');
\ No newline at end of file