Skip to content

Commit 9a0e1a0

Browse files
committed
fix(firebase-perf): Format
1 parent b03b87c commit 9a0e1a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

firebase-perf/src/test/java/com/google/firebase/perf/config/ConfigResolverTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)