| Index: tests/html/typed_arrays_1_test.dart | 
| diff --git a/tests/html/typed_arrays_1_test.dart b/tests/html/typed_arrays_1_test.dart | 
| index c3eb811a35c81a61af4157c1485d41f804436849..e8996127807548f753e4a6796a1fd3a6cdcdcdac 100644 | 
| --- a/tests/html/typed_arrays_1_test.dart | 
| +++ b/tests/html/typed_arrays_1_test.dart | 
| @@ -3,6 +3,7 @@ | 
| // BSD-style license that can be found in the LICENSE file. | 
|  | 
| library TypedArrays1Test; | 
| + | 
| import 'package:unittest/unittest.dart'; | 
| import 'package:unittest/html_individual_config.dart'; | 
| import 'dart:html'; | 
| @@ -33,7 +34,7 @@ main() { | 
|  | 
| test('aliasTest', () { | 
| expect(() { | 
| -        var a1 = new Uint8List.fromList([0,0,1,0x45]); | 
| +        var a1 = new Uint8List.fromList([0, 0, 1, 0x45]); | 
| var a2 = new Float32List.view(a1.buffer); | 
|  | 
| expect(a1.lengthInBytes, a2.lengthInBytes); | 
|  |