Bug 1639126 [wpt PR 23686] - webrtc wpt: s/doSignalingHandshake/exchangeOfferAnswer/g, a=testonly

Automatic update from web-platform-tests
webrtc wpt: s/doSignalingHandshake/exchangeOfferAnswer/g

follow-up on e880d97b7c (diff-2878d90936c40c4a1eb3e3d833ee9155)

BUG=chromium:1084006

Change-Id: I1bf03d1bab1cfaab0ca05191e04339cb3bbb9815
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207220
Reviewed-by: Harald Alvestrand <hta@chromium.org>
Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com>
Cr-Commit-Position: refs/heads/master@{#770040}

--

wpt-commits: b4e1a360eecd91da624761420e07ee47421607d8
wpt-pr: 23686
This commit is contained in:
Philipp Hancke 2020-05-26 11:22:00 +00:00 committed by moz-wptsync-bot
parent 943edcc88b
commit 5b3ff51b0d
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ promise_test(async (t) => {
});
exchangeIceCandidates(pc1, pc2);
await doSignalingHandshake(pc1, pc2);
await exchangeOfferAnswer(pc1, pc2);
await resolver;
}, 'In-band negotiated channel created on remote peer should match the same configuration as local ' +
@ -57,7 +57,7 @@ promise_test(async (t) => {
});
exchangeIceCandidates(pc1, pc2);
await doSignalingHandshake(pc1, pc2);
await exchangeOfferAnswer(pc1, pc2);
await resolver;
}, 'In-band negotiated channel created on remote peer should match the same (default) ' +

View File

@ -52,7 +52,7 @@ promise_test(async t => {
v.addEventListener('loadedmetadata', resolve);
});
exchangeIceCandidates(pc1, pc2);
doSignalingHandshake(pc1, pc2);
exchangeOfferAnswer(pc1, pc2);
await metadataToBeLoaded;
// The basic signal is a track with signal 100. We replace this
// with tracks with signal from 0 to 255 and see if they are all

View File

@ -297,7 +297,7 @@ promise_test(async t => {
});
});
exchangeIceCandidates(pc1, pc2);
doSignalingHandshake(pc1, pc2);
exchangeOfferAnswer(pc1, pc2);
await metadataToBeLoaded;
await detectSignal(t, v, 20);
await sender.replaceTrack(track2);