Index: tests/html/interactive_test.dart |
diff --git a/tests/html/interactive_test.dart b/tests/html/interactive_test.dart |
index e8d70ff398931fe2c9c45a2004ba019d5781040d..02d1dda9ab56f0dbd3b8895ff6889f8167f67ea5 100644 |
--- a/tests/html/interactive_test.dart |
+++ b/tests/html/interactive_test.dart |
@@ -40,7 +40,7 @@ main() { |
return window.navigator.getUserMedia(video: true).then((stream) { |
expect(stream, isNotNull); |
- var url = Url.createObjectUrlFromStream(stream); |
+ var url = Url.createObjectUrl(stream); |
expect(url, isNotNull); |
var video = new VideoElement() |
@@ -71,7 +71,7 @@ main() { |
}).then((stream) { |
expect(stream, isNotNull); |
- var url = Url.createObjectUrlFromStream(stream); |
+ var url = Url.createObjectUrl(stream); |
expect(url, isNotNull); |
var video = new VideoElement() |