fix tests
git-svn-id: https://svn.apache.org/repos/asf/ant/sandbox/antlibs/antunit/trunk@165293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
59d3709306
commit
e95852fb9a
|
|
@ -114,30 +114,30 @@
|
|||
|
||||
<target name="assertDestIsUptodatePass">
|
||||
<au:assertDestIsUptodate
|
||||
src="../../main/org/apache/ant/antlib/antunit/AssertTask.java"
|
||||
src="../../main/org/apache/ant/antunit/AssertTask.java"
|
||||
|
||||
dest="../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class"/>
|
||||
dest="../../../build/classes/org/apache/ant/antunit/AssertTask.class"/>
|
||||
</target>
|
||||
|
||||
<target name="assertDestIsUptodateFail">
|
||||
<au:assertDestIsUptodate
|
||||
dest="../../main/org/apache/ant/antlib/antunit/AssertTask.java"
|
||||
dest="../../main/org/apache/ant/antunit/AssertTask.java"
|
||||
|
||||
src="../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class"/>
|
||||
src="../../../build/classes/org/apache/ant/antunit/AssertTask.class"/>
|
||||
</target>
|
||||
|
||||
<target name="assertDestIsOutofdatePass">
|
||||
<au:assertDestIsOutofdate
|
||||
dest="../../main/org/apache/ant/antlib/antunit/AssertTask.java"
|
||||
dest="../../main/org/apache/ant/antunit/AssertTask.java"
|
||||
|
||||
src="../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class"/>
|
||||
src="../../../build/classes/org/apache/ant/antunit/AssertTask.class"/>
|
||||
</target>
|
||||
|
||||
<target name="assertDestIsOutofdateFail">
|
||||
<au:assertDestIsOutofdate
|
||||
src="../../main/org/apache/ant/antlib/antunit/AssertTask.java"
|
||||
src="../../main/org/apache/ant/antunit/AssertTask.java"
|
||||
|
||||
dest="../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class"/>
|
||||
dest="../../../build/classes/org/apache/ant/antunit/AssertTask.class"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -97,11 +97,11 @@ public class AssertTest extends BuildFileTest {
|
|||
}
|
||||
public void testDestIsUptodateFail() {
|
||||
testFail("assertDestIsUptodateFail",
|
||||
"Expected '../../main/org/apache/ant/antlib/antunit/AssertTask.java' to be more recent than '../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class'");
|
||||
"Expected '../../main/org/apache/ant/antunit/AssertTask.java' to be more recent than '../../../build/classes/org/apache/ant/antunit/AssertTask.class'");
|
||||
}
|
||||
public void testDestIsOutofdateFail() {
|
||||
testFail("assertDestIsOutofdateFail",
|
||||
"Expected '../../main/org/apache/ant/antlib/antunit/AssertTask.java' to be more recent than '../../../build/classes/org/apache/ant/antlib/antunit/AssertTask.class'");
|
||||
"Expected '../../main/org/apache/ant/antunit/AssertTask.java' to be more recent than '../../../build/classes/org/apache/ant/antunit/AssertTask.class'");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue