From 71108118df4af336f78fcc6fdbbcd5e1a0093794 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Thu, 10 Feb 2005 20:56:02 +0000 Subject: [PATCH] Corrected loglevel info in javadoc. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277625 13f79535-47bb-0310-9956-ffa450edef68 --- src/testcases/org/apache/tools/ant/BuildFileTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);