Skip to content

Commit

Permalink
feat(unification): fix test #370
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinPostindustria committed Mar 24, 2022
1 parent e81b623 commit 07f9126
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void whenInitAdConfig_PrepareAdConfigForBanner() {

@Test
public void whenSetRefreshInterval_ChangeRefreshIntervalInAdConfig() {
assertEquals(0, mMediationBannerAdUnit.mAdUnitConfig.getAutoRefreshDelay());
assertEquals(30_000, mMediationBannerAdUnit.mAdUnitConfig.getAutoRefreshDelay());
mMediationBannerAdUnit.setRefreshInterval(15);
assertEquals(30_000, mMediationBannerAdUnit.mAdUnitConfig.getAutoRefreshDelay());
}
Expand Down

0 comments on commit 07f9126

Please sign in to comment.