Forgot to remove import. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/5494a25e Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/5494a25e Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/5494a25e
Branch: refs/heads/LOG4J2-1010&LOG4J2-1447-injectable-contextdata&better-datastructure Commit: 5494a25ea7f04225cdd98d1a677d241bf95350fb Parents: b41310f Author: Gary Gregory <ggreg...@apache.org> Authored: Mon Aug 15 13:08:04 2016 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Mon Aug 15 13:08:04 2016 -0700 ---------------------------------------------------------------------- .../logging/log4j/core/layout/CsvParameterLayoutTest.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/5494a25e/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/CsvParameterLayoutTest.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/CsvParameterLayoutTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/CsvParameterLayoutTest.java index 3347aa3..58ce1bd 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/CsvParameterLayoutTest.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/layout/CsvParameterLayoutTest.java @@ -16,6 +16,8 @@ */ package org.apache.logging.log4j.core.layout; +import static org.junit.Assert.assertEquals; + import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.Collection; @@ -26,22 +28,18 @@ import java.util.concurrent.TimeUnit; import org.apache.commons.csv.CSVFormat; import org.apache.logging.log4j.Level; -import org.apache.logging.log4j.ThreadContext; import org.apache.logging.log4j.core.Appender; import org.apache.logging.log4j.core.Logger; import org.apache.logging.log4j.junit.LoggerContextRule; import org.apache.logging.log4j.junit.ThreadContextRule; import org.apache.logging.log4j.message.ObjectArrayMessage; import org.apache.logging.log4j.test.appender.ListAppender; -import org.junit.AfterClass; import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; -import static org.junit.Assert.*; - /** * Tests {@link AbstractCsvLayout}. *