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
283283 @ Test
284284 public void getIsServiceCollectionEnabled_deviceCacheHasSameValueAsFrc_returnCacheValue () {
285285 when (mockRemoteConfigManager .getBoolean (FIREBASE_PERFORMANCE_SDK_ENABLED_FRC_KEY ))
286- .thenReturn (Optional .of (true ));
286+ .thenReturn (Optional .of (true ));
287287 when (mockDeviceCacheManager .getBoolean (FIREBASE_PERFORMANCE_SDK_ENABLED_CACHE_KEY ))
288- .thenReturn (Optional .of (true ));
288+ .thenReturn (Optional .of (true ));
289289
290290 when (mockDeviceCacheManager .getString (FIREBASE_PERFORMANCE_DISABLED_VERSIONS_CACHE_KEY ))
291- .thenReturn (Optional .of ("" ));
291+ .thenReturn (Optional .of ("" ));
292292 when (mockRemoteConfigManager .getString (FIREBASE_PERFORMANCE_DISABLED_VERSIONS_FRC_KEY ))
293- .thenReturn (Optional .of ("" ));
293+ .thenReturn (Optional .of ("" ));
294294
295295 assertThat (testConfigResolver .getIsServiceCollectionEnabled ()).isTrue ();
296296 verify (mockDeviceCacheManager , never ()).setValue (any (), anyBoolean ());
You can’t perform that action at this time.
0 commit comments