You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2014/09/25 15:51:48 UTC

git commit: This test MUST be adjusted whenever the .java source lines changes.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master e4a9d7f9d -> c8ff364c9


This test MUST be adjusted whenever the .java source lines changes.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/c8ff364c
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/c8ff364c
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/c8ff364c

Branch: refs/heads/master
Commit: c8ff364c9f677f5214e1eb40d1173d85f136f67c
Parents: e4a9d7f
Author: Gary Gregory <ga...@gmail.com>
Authored: Thu Sep 25 09:51:44 2014 -0400
Committer: Gary Gregory <ga...@gmail.com>
Committed: Thu Sep 25 09:51:44 2014 -0400

----------------------------------------------------------------------
 .../core/appender/MemoryMappedFileAppenderLocationTest.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/c8ff364c/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/MemoryMappedFileAppenderLocationTest.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/MemoryMappedFileAppenderLocationTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/MemoryMappedFileAppenderLocationTest.java
index ae4502c..761ee4f 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/MemoryMappedFileAppenderLocationTest.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/MemoryMappedFileAppenderLocationTest.java
@@ -85,12 +85,12 @@ public class MemoryMappedFileAppenderLocationTest {
         }
         assertNotNull(line1);
         assertThat(line1, containsString("Test log1"));
-        String location1 = "org.apache.logging.log4j.core.appender.MemoryMappedFileAppenderLocationTest.testMemMapLocation(MemoryMappedFileAppenderLocationTest.java:63)";
+        String location1 = "org.apache.logging.log4j.core.appender.MemoryMappedFileAppenderLocationTest.testMemMapLocation(MemoryMappedFileAppenderLocationTest.java:65)";
         assertThat(line1, containsString(location1));
 
         assertNotNull(line2);
         assertThat(line2, containsString("Test log2"));
-        String location2 = "org.apache.logging.log4j.core.appender.MemoryMappedFileAppenderLocationTest.testMemMapLocation(MemoryMappedFileAppenderLocationTest.java:67)";
+        String location2 = "org.apache.logging.log4j.core.appender.MemoryMappedFileAppenderLocationTest.testMemMapLocation(MemoryMappedFileAppenderLocationTest.java:69)";
         assertThat(line2, containsString(location2));
 
         assertNull("only two lines were logged", line3);