Fix test case.

This commit is contained in:
wu-sheng 2017-12-11 16:04:45 +08:00
parent 15328202b8
commit b3d98f3c50
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class EasyLoggerTest {
String formatLines = logger.format(exception);
String[] lines = formatLines.split(Constants.LINE_SEPARATOR);
Assert.assertEquals("java.lang.NullPointerException", lines[1]);
Assert.assertEquals("\tat org.apache.skywalking.apm.agent.core.logging.core.EasyLoggerTest.testFormat(EasyLoggerTest.java:132)", lines[2]);
Assert.assertEquals("\tat org.apache.skywalking.apm.agent.core.logging.core.EasyLoggerTest.testFormat(EasyLoggerTest.java:115)", lines[2]);
}
@AfterClass