Repository: logging-log4j2
Updated Branches:
  refs/heads/master 423dac9e7 -> 8b10560c3


Sort members.

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

Branch: refs/heads/master
Commit: 71065d3bcb4e31522f62fc496c4d3558d72de4c4
Parents: 423dac9
Author: ggregory <[email protected]>
Authored: Tue Aug 25 16:11:30 2015 -0700
Committer: ggregory <[email protected]>
Committed: Tue Aug 25 16:11:30 2015 -0700

----------------------------------------------------------------------
 .../test/java/org/apache/logging/log4j/LevelTest.java   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/71065d3b/log4j-api/src/test/java/org/apache/logging/log4j/LevelTest.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/test/java/org/apache/logging/log4j/LevelTest.java 
b/log4j-api/src/test/java/org/apache/logging/log4j/LevelTest.java
index 34dd64c..9a37144 100644
--- a/log4j-api/src/test/java/org/apache/logging/log4j/LevelTest.java
+++ b/log4j-api/src/test/java/org/apache/logging/log4j/LevelTest.java
@@ -26,17 +26,17 @@ import static org.junit.Assert.*;
 public class LevelTest {
 
     @Test
-    public void testGoodLevels() {
-        final Level level = Level.toLevel("INFO");
+    public void testDefault() {
+        final Level level = Level.toLevel("Information", Level.ERROR);
         assertNotNull(level);
-        assertEquals(Level.INFO, level);
+        assertEquals(Level.ERROR, level);
     }
 
     @Test
-    public void testDefault() {
-        final Level level = Level.toLevel("Information", Level.ERROR);
+    public void testGoodLevels() {
+        final Level level = Level.toLevel("INFO");
         assertNotNull(level);
-        assertEquals(Level.ERROR, level);
+        assertEquals(Level.INFO, level);
     }
 
     @Test

Reply via email to