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 2015/06/22 19:18:09 UTC

logging-log4j2 git commit: Rename test methods.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 4cf831b69 -> 5d7ff06e8


Rename test methods.

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

Branch: refs/heads/master
Commit: 5d7ff06e8a49d76ff4794a945fb90e0f411b9b70
Parents: 4cf831b
Author: ggregory <gg...@apache.org>
Authored: Mon Jun 22 10:18:07 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Jun 22 10:18:07 2015 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/logging/slf4j/MarkerTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/5d7ff06e/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
----------------------------------------------------------------------
diff --git a/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java b/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
index 2ef29f1..e006ef7 100644
--- a/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
+++ b/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
@@ -64,7 +64,7 @@ public class MarkerTest {
 	}
 
     @Test
-	public void testContainsMarker() {
+	public void testContainsNullMarker() {
 		final org.slf4j.Marker slf4jMarker = org.slf4j.MarkerFactory.getMarker(CHILD_MAKER_NAME + "-CM");
 		final org.slf4j.Marker slf4jParent = org.slf4j.MarkerFactory.getMarker(PARENT_MARKER_NAME + "-CM");
 		slf4jMarker.add(slf4jParent);
@@ -88,7 +88,7 @@ public class MarkerTest {
 	}
 
     @Test
-	public void testContainsString() {
+	public void testContainsNullString() {
 		final org.slf4j.Marker slf4jMarker = org.slf4j.MarkerFactory.getMarker(CHILD_MAKER_NAME + "-CS");
 		final org.slf4j.Marker slf4jParent = org.slf4j.MarkerFactory.getMarker(PARENT_MARKER_NAME + "-CS");
 		slf4jMarker.add(slf4jParent);