diff --git a/src/testcases/org/apache/tools/ant/BuildFileTest.java b/src/testcases/org/apache/tools/ant/BuildFileTest.java index a76c40135..a1be43546 100644 --- a/src/testcases/org/apache/tools/ant/BuildFileTest.java +++ b/src/testcases/org/apache/tools/ant/BuildFileTest.java @@ -62,7 +62,7 @@ public abstract class BuildFileTest extends TestCase { /** * Assert that only the given message has been logged with a - * priority >= INFO when running the given target. + * priority <= INFO when running the given target. */ protected void expectLog(String target, String log) { executeTarget(target); @@ -83,7 +83,7 @@ public abstract class BuildFileTest extends TestCase { /** * Assert that the given message has been logged with a priority - * >= INFO when running the given target. + * <= INFO when running the given target. */ protected void expectLogContaining(String target, String log) { executeTarget(target); @@ -103,7 +103,7 @@ public abstract class BuildFileTest extends TestCase { /** * Assert that the given message has been logged with a priority - * >= DEBUG when running the given target. + * >= VERBOSE when running the given target. */ protected void expectDebuglog(String target, String log) { executeTarget(target);