From 3a33bd4d2108b054962edd47fd1547feb8026722 Mon Sep 17 00:00:00 2001 From: "almostmatt@google.com" Date: Tue, 27 Jun 2023 19:42:52 -0400 Subject: [PATCH] Increase the wait time for realtime from 10s to 30s --- remote_config/integration_test/src/integration_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote_config/integration_test/src/integration_test.cc b/remote_config/integration_test/src/integration_test.cc index 72deb04dd3..4bc466276c 100644 --- a/remote_config/integration_test/src/integration_test.cc +++ b/remote_config/integration_test/src/integration_test.cc @@ -314,7 +314,7 @@ TEST_F(FirebaseRemoteConfigTest, TestAddOnConfigUpdateListener) { if (!has_cached_data) { auto config_update_future = config_update_promise->get_future(); ASSERT_EQ(std::future_status::ready, - config_update_future.wait_for(std::chrono::milliseconds(10000))); + config_update_future.wait_for(std::chrono::milliseconds(30000))); // On Android WaitForCompletion must be called from the main thread, // so Activate is called here outside of the listener.