File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
firebase-perf/src/test/java/com/google/firebase/perf/config Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -283,14 +283,14 @@ public void getIsServiceCollectionEnabled_sdkDisabledVersionFlagNoFrc_returnDefa
283
283
@ Test
284
284
public void getIsServiceCollectionEnabled_deviceCacheHasSameValueAsFrc_returnCacheValue () {
285
285
when (mockRemoteConfigManager .getBoolean (FIREBASE_PERFORMANCE_SDK_ENABLED_FRC_KEY ))
286
- .thenReturn (Optional .of (true ));
286
+ .thenReturn (Optional .of (true ));
287
287
when (mockDeviceCacheManager .getBoolean (FIREBASE_PERFORMANCE_SDK_ENABLED_CACHE_KEY ))
288
- .thenReturn (Optional .of (true ));
288
+ .thenReturn (Optional .of (true ));
289
289
290
290
when (mockDeviceCacheManager .getString (FIREBASE_PERFORMANCE_DISABLED_VERSIONS_CACHE_KEY ))
291
- .thenReturn (Optional .of ("" ));
291
+ .thenReturn (Optional .of ("" ));
292
292
when (mockRemoteConfigManager .getString (FIREBASE_PERFORMANCE_DISABLED_VERSIONS_FRC_KEY ))
293
- .thenReturn (Optional .of ("" ));
293
+ .thenReturn (Optional .of ("" ));
294
294
295
295
assertThat (testConfigResolver .getIsServiceCollectionEnabled ()).isTrue ();
296
296
verify (mockDeviceCacheManager , never ()).setValue (any (), anyBoolean ());
You can’t perform that action at this time.
0 commit comments