Skip to content

Commit ced4210

Browse files
committed
Updated logging check to ERROR in DefaultLoggerTests
1 parent 91d0e33 commit ced4210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/microsoft/graph/logger/DefaultLoggerTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ public class DefaultLoggerTests {
1212
@Test
1313
public void testLoggerLevel(){
1414
ILogger logger = new DefaultLogger();
15-
assertEquals(LoggerLevel.DEBUG, logger.getLoggingLevel());
16-
logger.setLoggingLevel(LoggerLevel.ERROR);
1715
assertEquals(LoggerLevel.ERROR, logger.getLoggingLevel());
16+
logger.setLoggingLevel(LoggerLevel.DEBUG);
17+
assertEquals(LoggerLevel.DEBUG, logger.getLoggingLevel());
1818
}
1919
}

0 commit comments

Comments
 (0)