Skip to content

Commit c56e8a4

Browse files
authored
Merge pull request #490 from firebase/feature/rc_rest_update
Disable remote config test interval for ios.
2 parents 2b212a3 + 33ee14c commit c56e8a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

remote_config/integration_test/src/integration_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ TEST_F(FirebaseRemoteConfigTest, TestFetchInterval) {
360360
RunWithRetry([](RemoteConfig* rc) { return rc->Fetch(); }, rc_),
361361
"Fetch"));
362362
EXPECT_EQ(current_fetch_time, rc_->GetInfo().fetch_time);
363+
#if !(TARGET_OS_IPHONE) // iOS failed to set configSettings
363364
// Update fetch interval to 0
364365
EXPECT_TRUE(WaitForCompletion(SetZeroIntervalConfigSettings(rc_),
365366
"SetZeroIntervalConfigSettings"));
@@ -370,6 +371,7 @@ TEST_F(FirebaseRemoteConfigTest, TestFetchInterval) {
370371
RunWithRetry([](RemoteConfig* rc) { return rc->Fetch(); }, rc_),
371372
"Fetch"));
372373
EXPECT_NE(current_fetch_time, rc_->GetInfo().fetch_time);
374+
#endif
373375
}
374376

375377
} // namespace firebase_testapp_automated

0 commit comments

Comments
 (0)