Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: content/test/data/media/peerconnection-call.html

Issue 1729563002: Replace RTCErrorCallback with RTCPeerConnectionErrorCallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-createAnswer.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/media/peerconnection-call.html
diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html
index 2d4c4c4f1fee605a0ca363a0f3465aa35817fb5b..28e061b0293258ace458163a110c8e4334c70d1d 100644
--- a/content/test/data/media/peerconnection-call.html
+++ b/content/test/data/media/peerconnection-call.html
@@ -205,7 +205,7 @@
var expectedMsg = 'Failed to set local offer sdp:' +
' Session error code: ERROR_CONTENT. Session error description:' +
' Failed to set local video description recv parameters..';
- assertEquals(expectedMsg, error);
+ assertEquals(expectedMsg, error.message);
reportTestSuccess();
};
navigator.webkitGetUserMedia({audio: true, video: true},
@@ -220,7 +220,7 @@
var expectedMsg = 'Failed to set local offer sdp:' +
' Called with SDP without DTLS fingerprint.';
- assertEquals(expectedMsg, error);
+ assertEquals(expectedMsg, error.message);
reportTestSuccess();
};
navigator.webkitGetUserMedia({audio: true, video: true},
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-createAnswer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698