| Index: tests/lib/typeddata/float32x4_list_test.dart
|
| diff --git a/tests/lib/typeddata/float32x4_list_test.dart b/tests/lib/typeddata/float32x4_list_test.dart
|
| index 3fffde02d03afcf311e234be65968d0a97b97608..2073aff035df83a148e0057b72707233bb98d3ba 100644
|
| --- a/tests/lib/typeddata/float32x4_list_test.dart
|
| +++ b/tests/lib/typeddata/float32x4_list_test.dart
|
| @@ -5,7 +5,7 @@
|
| // Library tag to be able to run in html test framework.
|
| library float32x4_list_test;
|
|
|
| -import 'dart:typeddata';
|
| +import 'dart:scalarlist';
|
|
|
| testLoadStore(array) {
|
| Expect.equals(8, array.length);
|
| @@ -56,7 +56,7 @@ main() {
|
| for (int i = 0; i < floatList.length; i++) {
|
| floatList[i] = i.toDouble();
|
| }
|
| - list = new Float32x4List.view(floatList);
|
| + list = new Float32x4List.view(floatList.asByteArray());
|
| for (int i = 0; i < 3000; i++) {
|
| testView(list);
|
| }
|
|
|