@@ -353,15 +353,18 @@ TEST_F(FirebaseRemoteConfigTest, TestFetchInterval) {
353353 EXPECT_TRUE (WaitForCompletion (rc_->Activate (), " Activate" ));
354354 uint64_t current_fetch_time = rc_->GetInfo ().fetch_time ;
355355 // Making sure the config settings's fetch interval is 12 hours
356- EXPECT_TRUE (WaitForCompletion (SetDefaultConfigSettings (rc_), " SetDefaultConfigSettings" ));
356+ EXPECT_TRUE (WaitForCompletion (SetDefaultConfigSettings (rc_),
357+ " SetDefaultConfigSettings" ));
357358 // Second fetch, should respect fetch interval and don't change data.
358359 EXPECT_TRUE (WaitForCompletion (
359360 RunWithRetry ([](RemoteConfig* rc) { return rc->Fetch (); }, rc_),
360361 " Fetch" ));
361362 EXPECT_EQ (current_fetch_time, rc_->GetInfo ().fetch_time );
362363 // Update fetch interval to 0
363- EXPECT_TRUE (WaitForCompletion (SetZeroIntervalConfigSettings (rc_), " SetZeroIntervalConfigSettings" ));
364- LogDebug (" Current Fetch Interval: %lld" , rc_->GetConfigSettings ().minimum_fetch_interval_in_milliseconds );
364+ EXPECT_TRUE (WaitForCompletion (SetZeroIntervalConfigSettings (rc_),
365+ " SetZeroIntervalConfigSettings" ));
366+ LogDebug (" Current Fetch Interval: %lld" ,
367+ rc_->GetConfigSettings ().minimum_fetch_interval_in_milliseconds );
365368 // Third fetch, this should operate the real fetch and update the fetch time.
366369 EXPECT_TRUE (WaitForCompletion (
367370 RunWithRetry ([](RemoteConfig* rc) { return rc->Fetch (); }, rc_),
0 commit comments