Index: LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html |
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html b/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html |
index 3b9938f8e653c264878d11cd9ffc33e97c3420ff..06d84bb73efaee4c856cbde775693679717dc156 100644 |
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html |
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html |
@@ -8,7 +8,6 @@ |
description("Tests RTCPeerConnection remoteDescription."); |
var pc = null; |
-var observation = null; |
function requestFailed2() |
{ |
@@ -39,13 +38,8 @@ |
{ |
testPassed('requestSucceeded was called.'); |
- shouldBeTrue('pc.remoteDescription === sessionDescription'); |
- observation = internals.observeGC(pc.remoteDescription); |
- asyncGC(function() { |
- shouldBeFalse('observation.wasCollected'); |
- sessionDescription = new RTCSessionDescription({type:"offer", sdp:"local"}); |
- shouldNotThrow('pc.setRemoteDescription(sessionDescription, requestSucceeded2, requestFailed2);'); |
- }); |
+ sessionDescription = new RTCSessionDescription({type:"offer", sdp:"local"}); |
+ shouldNotThrow('pc.setRemoteDescription(sessionDescription, requestSucceeded2, requestFailed2);'); |
} |
pc = new webkitRTCPeerConnection(null, null); |