Skip to content

Commit

Permalink
Fix compiler errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsimantov committed Jan 12, 2024
1 parent c474fbc commit 38a6f4a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions gma/integration_test/src/integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2434,7 +2434,7 @@ TEST_F(FirebaseGmaTest, TestRewardedAdStress) {
firebase::gma::AdRequest request = GetAdRequest();
firebase::Future<firebase::gma::AdResult> future =
rewarded->LoadAd(kRewardedAdUnit, request);
WaitForCompletionAnyResult(
WaitForCompletion(
future, "TestRewardedAdStress LoadAd",
{firebase::gma::kAdErrorCodeNone, firebase::gma::kAdErrorCodeNoFill});
// Stress tests may exhaust the ad pool. If so, loadAd will return
Expand Down Expand Up @@ -2758,11 +2758,10 @@ TEST_F(FirebaseGmaUmpTest, TestUmpLoadFormUnderAgeOfConsent) {
"RequestConsentInfoUpdate");

firebase::Future<void> load_future = consent_info_->LoadConsentForm();
WaitForCompletion(
load_future,
"LoadConsentForm" {firebase::gma::ump::kConsentFormErrorUnavailable,
firebase::gma::ump::kConsentFormErrorTimeout,
firebase::gma::ump::kConsentFormSuccess});
WaitForCompletion(load_future, "LoadConsentForm",
{firebase::gma::ump::kConsentFormErrorUnavailable,
firebase::gma::ump::kConsentFormErrorTimeout,
firebase::gma::ump::kConsentFormSuccess});
}

TEST_F(FirebaseGmaUmpTest, TestUmpLoadFormUnavailableDebugNonEEA) {
Expand Down

0 comments on commit 38a6f4a

Please sign in to comment.