mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Fix onLoadStarted event accumulation in DefaultAnalyticsCollectorTest
This commit is contained in:
parent
b565f47d18
commit
d3298391b2
1 changed files with 2 additions and 2 deletions
|
|
@ -2269,7 +2269,7 @@ public final class DefaultAnalyticsCollectorTest {
|
|||
@Override
|
||||
public void onLoadStarted(
|
||||
EventTime eventTime, LoadEventInfo loadEventInfo, MediaLoadData mediaLoadData) {
|
||||
reportedEvents.add(new ReportedEvent(EVENT_LOAD_STARTED, eventTime));
|
||||
reportedEvents.add(new ReportedEvent(DEPRECATED_EVENT_LOAD_STARTED, eventTime));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -2278,7 +2278,7 @@ public final class DefaultAnalyticsCollectorTest {
|
|||
LoadEventInfo loadEventInfo,
|
||||
MediaLoadData mediaLoadData,
|
||||
int retryCount) {
|
||||
reportedEvents.add(new ReportedEvent(DEPRECATED_EVENT_LOAD_STARTED, eventTime));
|
||||
reportedEvents.add(new ReportedEvent(EVENT_LOAD_STARTED, eventTime));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in a new issue