Log test error when assert line number after add copyright head.

This commit is contained in:
peng-yongsheng 2017-10-10 22:58:58 +08:00 committed by gaohongtao
parent 7b72bf2baa
commit 7b9c6f218f
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,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.skywalking.apm.agent.core.logging.EasyLoggerTest.testFormat(EasyLoggerTest.java:86)", lines[2]);
Assert.assertEquals("\tat org.skywalking.apm.agent.core.logging.EasyLoggerTest.testFormat(EasyLoggerTest.java:103)", lines[2]);
}
@AfterClass