@@ -147,14 +147,14 @@ public class LoggingHandlerTest {
147147 .put ("resourceType" , "testResourceType" )
148148 .put ("synchronicity" , "SYNC" )
149149 .build ();
150- private static final ImmutableMap <String , String > NATIVE_SEVERITY_MAP =
150+ private static final ImmutableMap <String , String > BASE_SEVERITY_MAP =
151151 ImmutableMap .of (
152152 "levelName" , Level .INFO .getName (), "levelValue" , String .valueOf (Level .INFO .intValue ()));
153153 private static final WriteOption [] DEFAULT_OPTIONS =
154154 new WriteOption [] {
155155 WriteOption .logName (LOG_NAME ),
156156 WriteOption .resource (DEFAULT_RESOURCE ),
157- WriteOption .labels (NATIVE_SEVERITY_MAP )
157+ WriteOption .labels (BASE_SEVERITY_MAP )
158158 };
159159
160160 private static byte [] renderConfig (Map <String , String > config ) {
@@ -277,7 +277,7 @@ public void testPublishCustomResource() {
277277 ImmutableList .of (FINEST_ENTRY ),
278278 WriteOption .logName (LOG_NAME ),
279279 WriteOption .resource (resource ),
280- WriteOption .labels (NATIVE_SEVERITY_MAP ));
280+ WriteOption .labels (BASE_SEVERITY_MAP ));
281281 EasyMock .expectLastCall ().andReturn (ApiFutures .immediateFuture (null ));
282282 EasyMock .replay (options , logging );
283283 Handler handler = new LoggingHandler (LOG_NAME , options , resource );
@@ -295,7 +295,7 @@ public void testEnhancedLogEntry() {
295295 ImmutableList .of (FINEST_ENHANCED_ENTRY ),
296296 WriteOption .logName (LOG_NAME ),
297297 WriteOption .resource (resource ),
298- WriteOption .labels (NATIVE_SEVERITY_MAP ));
298+ WriteOption .labels (BASE_SEVERITY_MAP ));
299299 EasyMock .expectLastCall ().andReturn (ApiFutures .immediateFuture (null ));
300300 EasyMock .replay (options , logging );
301301 LoggingHandler .Enhancer enhancer = new LoggingHandler .Enhancer () {
0 commit comments