Update web-platform-tests to revision 3bfdeb8976fc51748935c8d1f1014dfba8e08dfb

This commit is contained in:
WPT Sync Bot 2019-03-28 22:09:18 -04:00
parent fcd6beb608
commit cb63cfd5c7
185 changed files with 3083 additions and 1074 deletions

View file

@ -148,21 +148,21 @@ async_test(t => {
const { iceConnectionState } = pc1;
if(iceConnectionState === 'checking') {
const iceTransport = pc1.sctp.transport.iceTransport;
const iceTransport = pc1.sctp.transport.transport;
assert_equals(iceTransport.state, 'checking',
'Expect ICE transport to be in checking state when' +
' iceConnectionState is checking');
} else if(iceConnectionState === 'connected') {
const iceTransport = pc1.sctp.transport.iceTransport;
const iceTransport = pc1.sctp.transport.transport;
assert_equals(iceTransport.state, 'connected',
'Expect ICE transport to be in connected state when' +
' iceConnectionState is connected');
} else if(iceConnectionState === 'completed') {
const iceTransport = pc1.sctp.transport.iceTransport;
const iceTransport = pc1.sctp.transport.transport;
assert_equals(iceTransport.state, 'completed',
'Expect ICE transport to be in connected state when' +