Repository: logging-log4j2 Updated Branches: refs/heads/master 9c706b2e1 -> d94555567
Add org.apache.logging.log4j.core.layout.PatternLayoutTest.testRegexEmptyMarker(). Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/d9455556 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/d9455556 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/d9455556 Branch: refs/heads/master Commit: d94555567ac5956f224e56b573e5fc31404df2a1 Parents: 9c706b2 Author: ggregory <[email protected]> Authored: Wed Sep 30 23:45:45 2015 -0700 Committer: ggregory <[email protected]> Committed: Wed Sep 30 23:45:45 2015 -0700 ---------------------------------------------------------------------- .../org/apache/logging/log4j/core/layout/PatternLayoutTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/d9455556/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/PatternLayoutTest.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/PatternLayoutTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/PatternLayoutTest.java index 19a6111..664c469 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/PatternLayoutTest.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/PatternLayoutTest.java @@ -301,7 +301,7 @@ public class PatternLayoutTest { .setIncludeLocation(true) .setMessage(new SimpleMessage("entry")).build(); final String result1 = new FauxLogger().formatEvent(event1, layout); - final String expectSuffix1 = String.format("====== PatternLayoutTest.testPatternSelector:281 entry ======%n"); + final String expectSuffix1 = String.format("====== PatternLayoutTest.testPatternSelector:303 entry ======%n"); assertTrue("Unexpected result: " + result1, result1.endsWith(expectSuffix1)); final LogEvent event2 = Log4jLogEvent.newBuilder() // .setLoggerName(this.getClass().getName()).setLoggerFqcn("org.apache.logging.log4j.core.Logger") //
