Repository: logging-log4j2 Updated Branches: refs/heads/master 32beb13f0 -> cb47c4da5
Remove unused 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/cb47c4da Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/cb47c4da Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/cb47c4da Branch: refs/heads/master Commit: cb47c4da5ed70b642be40d5d5e71ba53a69fda07 Parents: 32beb13 Author: Gary Gregory <[email protected]> Authored: Mon Sep 12 18:59:03 2016 -0700 Committer: Gary Gregory <[email protected]> Committed: Mon Sep 12 18:59:03 2016 -0700 ---------------------------------------------------------------------- .../org/apache/logging/log4j/core/config/PropertyTest.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/cb47c4da/log4j-core/src/test/java/org/apache/logging/log4j/core/config/PropertyTest.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/PropertyTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/PropertyTest.java index e1ec7d0..3a82ed2 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/core/config/PropertyTest.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/config/PropertyTest.java @@ -15,17 +15,19 @@ package org.apache.logging.log4j.core.config;/* * limitations under the license. */ +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + import java.util.List; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.junit.LoggerContextRule; import org.apache.logging.log4j.test.appender.ListAppender; import org.junit.ClassRule; -import org.junit.Ignore; import org.junit.Test; -import static org.junit.Assert.*; - /** * Test for LOG4J2-1313 * <Property name="" value="" /> not working
