mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Update web-platform-tests to revision 3b0abc897b6f4f3997ed42b9ef902e98b2893d8d
This commit is contained in:
parent
7a67443fcb
commit
c858882d3c
10 changed files with 22 additions and 15 deletions
|
@ -50,7 +50,7 @@ promise_test(async (t) => {
|
|||
|
||||
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
||||
|
||||
const offer = await generateOffer({ pc: pc1, audio: true });
|
||||
const offer = await generateAudioReceiveOnlyOffer(pc1);
|
||||
await Promise.all([pc1.setLocalDescription(offer), pc2.setRemoteDescription(offer)]);
|
||||
const answer = await pc2.createAnswer();
|
||||
await pc1.setRemoteDescription(answer);
|
||||
|
@ -66,7 +66,7 @@ promise_test(async (t) => {
|
|||
|
||||
assert_equals(pc1.sctp, null, 'RTCSctpTransport must be null');
|
||||
|
||||
const offer = await generateOffer({ pc: pc2, audio: true });
|
||||
const offer = await generateAudioReceiveOnlyOffer(pc2);
|
||||
await Promise.all([pc2.setLocalDescription(offer), pc1.setRemoteDescription(offer)]);
|
||||
const answer = await pc1.createAnswer();
|
||||
await pc1.setLocalDescription(answer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue