Skip to content

Commit

Permalink
Releases/v3.3.2
Browse files Browse the repository at this point in the history
## Improvements

* Update beacon batch interval from 5s to 10s (#277)
  • Loading branch information
daytime-em authored Mar 11, 2023
1 parent 42c6f78 commit a868df5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ public void testPreRollAndBumperAds() {
if (!testActivity.waitForPlaybackToStart(waitForPlaybackToStartInMS)) {
fail("Playback did not start in " + waitForPlaybackToStartInMS + " milliseconds !!!");
}
// First ad is 10 second
Thread.sleep(PREROLL_AD_PERIOD / 2);
// First ad is 10 second, sleep until the middle or so
Thread.sleep(5 * 1000);
// Pause the ad for 5 seconds
pausePlayer();
Thread.sleep(PAUSE_PERIOD_IN_MS);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public abstract class TestBase {
@Rule
public TestName currentTestName = new TestName();

static final int PLAY_PERIOD_IN_MS = 10000;
static final int PLAY_PERIOD_IN_MS = 22000;
static final int PAUSE_PERIOD_IN_MS = 3000;
static final int WAIT_FOR_NETWORK_PERIOD_IN_MS = 12000;

Expand Down

0 comments on commit a868df5

Please sign in to comment.