Index: tests/lib_strong/html/rtc_test.dart |
diff --git a/tests/lib_strong/html/rtc_test.dart b/tests/lib_strong/html/rtc_test.dart |
index 8582b3a4cea28fc0c955af6cfaa51ff775f51518..a5dd7bf24e166dcdfcf740f82a4d0712ff2b73c1 100644 |
--- a/tests/lib_strong/html/rtc_test.dart |
+++ b/tests/lib_strong/html/rtc_test.dart |
@@ -24,10 +24,7 @@ main() { |
var pc = new RtcPeerConnection( |
{'iceServers': [ {'url':'stun:216.93.246.18:3478'}]}); |
expect(pc is RtcPeerConnection, isTrue); |
- // TODO(efortuna): Uncomment this test when RTCPeerConnection correctly |
- // implements EventListener in Firefox (works correctly in nightly, so |
- // it's coming!). |
- //pc.onIceCandidate.listen((candidate) {}); |
+ pc.onIceCandidate.listen((candidate) {}); |
}); |
test('ice candidate', () { |