From 5b3ff51b0d64c2e31e977049f035d6e6fbce4e18 Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Tue, 26 May 2020 11:22:00 +0000 Subject: [PATCH] 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 https://github.com/web-platform-tests/wpt/commit/e880d97b7cc36c5f3c7f794c7427b46b746e656a#diff-2878d90936c40c4a1eb3e3d833ee9155 BUG=chromium:1084006 Change-Id: I1bf03d1bab1cfaab0ca05191e04339cb3bbb9815 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207220 Reviewed-by: Harald Alvestrand Commit-Queue: Philipp Hancke Cr-Commit-Position: refs/heads/master@{#770040} -- wpt-commits: b4e1a360eecd91da624761420e07ee47421607d8 wpt-pr: 23686 --- .../webrtc-priority/RTCPeerConnection-ondatachannel.html | 4 ++-- .../tests/webrtc/RTCPeerConnection-videoDetectorTest.html | 2 +- .../tests/webrtc/RTCRtpSender-replaceTrack.https.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/testing/web-platform/tests/webrtc-priority/RTCPeerConnection-ondatachannel.html b/testing/web-platform/tests/webrtc-priority/RTCPeerConnection-ondatachannel.html index b153c3adac50..e4b1e8d58a51 100644 --- a/testing/web-platform/tests/webrtc-priority/RTCPeerConnection-ondatachannel.html +++ b/testing/web-platform/tests/webrtc-priority/RTCPeerConnection-ondatachannel.html @@ -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) ' + diff --git a/testing/web-platform/tests/webrtc/RTCPeerConnection-videoDetectorTest.html b/testing/web-platform/tests/webrtc/RTCPeerConnection-videoDetectorTest.html index c9d0f24b12b3..71fffdc68603 100644 --- a/testing/web-platform/tests/webrtc/RTCPeerConnection-videoDetectorTest.html +++ b/testing/web-platform/tests/webrtc/RTCPeerConnection-videoDetectorTest.html @@ -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 diff --git a/testing/web-platform/tests/webrtc/RTCRtpSender-replaceTrack.https.html b/testing/web-platform/tests/webrtc/RTCRtpSender-replaceTrack.https.html index 671e86fd4e89..77b0fc9594c2 100644 --- a/testing/web-platform/tests/webrtc/RTCRtpSender-replaceTrack.https.html +++ b/testing/web-platform/tests/webrtc/RTCRtpSender-replaceTrack.https.html @@ -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);