Fix ci fail.

This commit is contained in:
wusheng 2017-03-23 16:57:22 +08:00
parent f8b624c3ce
commit dab1de8d22
1 changed files with 7 additions and 1 deletions

View File

@ -1,9 +1,10 @@
package com.a.eye.skywalking.api.conf;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Test;
import static com.a.eye.skywalking.api.logging.LogLevel.INFO;
import static com.a.eye.skywalking.api.logging.LogLevel.*;
/**
* @author wusheng
@ -24,4 +25,9 @@ public class SnifferConfigInitializerTest {
Assert.assertNotNull(Config.Logging.FILE_NAME);
Assert.assertEquals(INFO, Config.Logging.LEVEL);
}
@AfterClass
public static void clear(){
Config.Logging.LEVEL = DEBUG;
}
}