Fix android slow test missing dredDuration arg

This commit is contained in:
adel-signal 2026-03-13 12:24:36 -07:00 committed by GitHub
parent 120c0b301c
commit 30a6caeb54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ public final class GroupCall {
adminPasskey,
hkdfExtraInfo,
audioLevelsIntervalMillis,
dredDuration,
dredDurationByte,
// Returns a borrowed RC.
factory.getNativePeerConnectionFactory(),
// Returns a borrowed RC.

View File

@ -435,7 +435,7 @@ public class CallLinksTest extends CallTestBase {
CallManager callManager = CallManager.createCallManager(observer);
GroupCall.Observer callObserver = mock();
GroupCall call = callManager.createCallLinkCall("sfu.example", ENDORSEMENT_PUBLIC_KEY, new byte[] { 1, 2, 3 }, EXAMPLE_KEY, null, new byte[] {}, null, new AudioConfig(), callObserver);
GroupCall call = callManager.createCallLinkCall("sfu.example", ENDORSEMENT_PUBLIC_KEY, new byte[] { 1, 2, 3 }, EXAMPLE_KEY, null, new byte[] {}, null, null, new AudioConfig(), callObserver);
assertEquals(call.getKind(), GroupCall.Kind.CALL_LINK);
call.connect();