Index: tests/standalone/io/read_into_const_list_test.dart |
diff --git a/tests/standalone/io/read_into_const_list_test.dart b/tests/standalone/io/read_into_const_list_test.dart |
index e1ed5872ad9545179a1982897d78f6a92e27f345..5bc1c6b70a0fb35a426281afd74e61f9e4cd485b 100644 |
--- a/tests/standalone/io/read_into_const_list_test.dart |
+++ b/tests/standalone/io/read_into_const_list_test.dart |
@@ -20,7 +20,7 @@ void main() { |
File file = new File(filename); |
file.open().then((input) { |
try { |
- input.readListSync(a, 0, 1); |
+ input.readIntoSync(a, 0, 1); |
Expect.fail("no exception thrown"); |
} catch (e) { |
Expect.isTrue(e is UnsupportedError); |