You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2008/03/04 13:46:21 UTC

svn commit: r633456 - /ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml

Author: bodewig
Date: Tue Mar  4 04:46:20 2008
New Revision: 633456

URL: http://svn.apache.org/viewvc?rev=633456&view=rev
Log:
excess blank caused test failure

Modified:
    ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml

Modified: ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml?rev=633456&r1=633455&r2=633456&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml (original)
+++ ant/core/trunk/src/tests/antunit/taskdefs/retry-test.xml Tue Mar  4 04:46:20 2008
@@ -12,7 +12,7 @@
         <get src="${src}" dest="${dest}"/>
       </retry>
     </au:expectfailure>
-    <au:assertLogContains text="Attempt [1]:  error occurred; retrying..."/>
+    <au:assertLogContains text="Attempt [1]: error occurred; retrying..."/>
   </target>
 
   <target name="test-success">
@@ -21,7 +21,7 @@
     <retry retrycount="${i}">
       <touch file="${dest}"/>
     </retry>
-    <au:assertLogDoesntContain text="Attempt [1]:  error occurred; retrying..."/>
+    <au:assertLogDoesntContain text="Attempt [1]: error occurred; retrying..."/>
   </target>
 
 </project>