Fix ci fail.
This commit is contained in:
parent
f8b624c3ce
commit
dab1de8d22
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue