Browse Source

Corrected loglevel info in javadoc.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277625 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
71108118df
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/testcases/org/apache/tools/ant/BuildFileTest.java

+ 3
- 3
src/testcases/org/apache/tools/ant/BuildFileTest.java View File

@@ -62,7 +62,7 @@ public abstract class BuildFileTest extends TestCase {


/** /**
* Assert that only the given message has been logged with a * 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) { protected void expectLog(String target, String log) {
executeTarget(target); executeTarget(target);
@@ -83,7 +83,7 @@ public abstract class BuildFileTest extends TestCase {


/** /**
* Assert that the given message has been logged with a priority * 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) { protected void expectLogContaining(String target, String log) {
executeTarget(target); executeTarget(target);
@@ -103,7 +103,7 @@ public abstract class BuildFileTest extends TestCase {


/** /**
* Assert that the given message has been logged with a priority * 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) { protected void expectDebuglog(String target, String log) {
executeTarget(target); executeTarget(target);


Loading…
Cancel
Save