Title: [243322] trunk/LayoutTests/imported/w3c
Revision
243322
Author
[email protected]
Date
2019-03-21 13:42:40 -0700 (Thu, 21 Mar 2019)

Log Message

Fix one of RTCRtpTransceiver-stop.html test title
https://bugs.webkit.org/show_bug.cgi?id=196090

Reviewed by Brent Fulgham.

* web-platform-tests/webrtc/RTCRtpTransceiver-stop-expected.txt:
* web-platform-tests/webrtc/RTCRtpTransceiver-stop.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (243321 => 243322)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2019-03-21 20:39:59 UTC (rev 243321)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2019-03-21 20:42:40 UTC (rev 243322)
@@ -1,3 +1,13 @@
+2019-03-21  Youenn Fablet  <[email protected]>
+
+        Fix one of RTCRtpTransceiver-stop.html test title
+        https://bugs.webkit.org/show_bug.cgi?id=196090
+
+        Reviewed by Brent Fulgham.
+
+        * web-platform-tests/webrtc/RTCRtpTransceiver-stop-expected.txt:
+        * web-platform-tests/webrtc/RTCRtpTransceiver-stop.html:
+
 2019-03-19  Ryosuke Niwa  <[email protected]>
 
         appendChild should throw when inserting an ancestor of a template into its content adopted to another document

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop-expected.txt (243321 => 243322)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop-expected.txt	2019-03-21 20:39:59 UTC (rev 243321)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop-expected.txt	2019-03-21 20:42:40 UTC (rev 243322)
@@ -1,6 +1,6 @@
 
 PASS A transceiver added and stopped before the initial offer generation should not trigger an offer m-section generation 
 PASS During renegotiation, adding and stopping a transceiver should not trigger a renegotiated offer m-section generation 
-PASS A stopped sendonly transceiver should generate an inactive m-section in the offer 
+PASS A stopped sendonly transceiver should generate a sendonly m-section in the offer 
 PASS A stopped inactive transceiver should generate an inactive m-section in the offer 
 

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop.html (243321 => 243322)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop.html	2019-03-21 20:39:59 UTC (rev 243321)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpTransceiver-stop.html	2019-03-21 20:42:40 UTC (rev 243322)
@@ -60,7 +60,7 @@
     const offer = await pc1.createOffer();
 
     assert_true(offer.sdp.includes("a=sendonly"), "The audio m-section should be sendonly");
-}, "A stopped sendonly transceiver should generate an inactive m-section in the offer");
+}, "A stopped sendonly transceiver should generate a sendonly m-section in the offer");
 
 promise_test(async (t)=> {
     const pc1 = new RTCPeerConnection();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to