Fixes incorrect parameter name comments in ImaAdsLoaderTest

This CL fixes build warnings (incorrect parameter name comment).

PiperOrigin-RevId: 292829708
This commit is contained in:
olly 2020-02-03 01:42:59 +00:00 committed by Oliver Woodman
parent 0be3451c39
commit d7551f9740

View file

@ -143,7 +143,7 @@ public class ImaAdsLoaderTest {
assertThat(adsLoaderListener.adPlaybackState)
.isEqualTo(
new AdPlaybackState(/* adGroupTimesUs= */ 0)
new AdPlaybackState(/* adGroupTimesUs...= */ 0)
.withAdDurationsUs(PREROLL_ADS_DURATIONS_US)
.withContentDurationUs(CONTENT_DURATION_US));
}
@ -213,7 +213,7 @@ public class ImaAdsLoaderTest {
// Verify that the preroll ad has been marked as played.
assertThat(adsLoaderListener.adPlaybackState)
.isEqualTo(
new AdPlaybackState(/* adGroupTimesUs= */ 0)
new AdPlaybackState(/* adGroupTimesUs...= */ 0)
.withContentDurationUs(CONTENT_DURATION_US)
.withAdCount(/* adGroupIndex= */ 0, /* adCount= */ 1)
.withAdUri(/* adGroupIndex= */ 0, /* adIndexInAdGroup= */ 0, /* uri= */ TEST_URI)