This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-logging.git
commit 9b69ba8a0419050d975c4e5a3d0cc3756d8a209d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Nov 19 09:24:05 2023 -0500 Adjust test assertions for previous commit --- .../org/apache/commons/logging/log4j2/CallerInformationTestCase.java | 2 +- .../org/apache/commons/logging/slf4j/CallerInformationTestCase.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/logging/log4j2/CallerInformationTestCase.java b/src/test/java/org/apache/commons/logging/log4j2/CallerInformationTestCase.java index 970ec39..9bad253 100644 --- a/src/test/java/org/apache/commons/logging/log4j2/CallerInformationTestCase.java +++ b/src/test/java/org/apache/commons/logging/log4j2/CallerInformationTestCase.java @@ -63,7 +63,7 @@ public class CallerInformationTestCase extends TestCase { public void testLocationInfo() { appender.clear(); // The following value must match the line number - final int currentLineNumber = 65; + final int currentLineNumber = 66; log.fatal(OBJ); log.fatal(OBJ, T); log.error(OBJ); diff --git a/src/test/java/org/apache/commons/logging/slf4j/CallerInformationTestCase.java b/src/test/java/org/apache/commons/logging/slf4j/CallerInformationTestCase.java index d24cbf2..f4537ce 100644 --- a/src/test/java/org/apache/commons/logging/slf4j/CallerInformationTestCase.java +++ b/src/test/java/org/apache/commons/logging/slf4j/CallerInformationTestCase.java @@ -75,7 +75,7 @@ public class CallerInformationTestCase extends TestCase { public void testLocationInfo() { appender.list.clear(); // The following value must match the line number - final int currentLineNumber = 77; + final int currentLineNumber = 78; log.fatal(STRING); log.fatal(STRING, T); log.error(STRING);