| Index: tests/html/typed_arrays_arraybuffer_test.dart
|
| diff --git a/tests/html/typed_arrays_arraybuffer_test.dart b/tests/html/typed_arrays_arraybuffer_test.dart
|
| index 07541c8a47ad013cb147123b62184b0fd4ce80af..13bd275f7b349faca0543de19dfefa5fe23fd9cd 100644
|
| --- a/tests/html/typed_arrays_arraybuffer_test.dart
|
| +++ b/tests/html/typed_arrays_arraybuffer_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| library typed_arrays_arraybuffer_test;
|
| +
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_config.dart';
|
| import 'dart:html';
|
| @@ -17,28 +18,28 @@ main() {
|
| }
|
|
|
| test('constructor', () {
|
| - var a = new Int8List(100);
|
| - expect(a.lengthInBytes, 100);
|
| + var a = new Int8List(100);
|
| + expect(a.lengthInBytes, 100);
|
| });
|
|
|
| test('sublist1', () {
|
| - var a = new Int8List(100);
|
| - var s = a.sublist(10, 40);
|
| - expect(s.length, 30);
|
| + var a = new Int8List(100);
|
| + var s = a.sublist(10, 40);
|
| + expect(s.length, 30);
|
| });
|
|
|
| test('sublist2', () {
|
| - var a = new Int8List(100);
|
| - expect(() => a.sublist(10, 400), throwsRangeError);
|
| + var a = new Int8List(100);
|
| + expect(() => a.sublist(10, 400), throwsRangeError);
|
| });
|
|
|
| test('sublist3', () {
|
| - var a = new Int8List(100);
|
| - expect(() => a.sublist(50, 10), throwsRangeError);
|
| + var a = new Int8List(100);
|
| + expect(() => a.sublist(50, 10), throwsRangeError);
|
| });
|
|
|
| test('sublist4', () {
|
| - var a = new Int8List(100);
|
| - expect(() => a.sublist(-90, -30), throwsRangeError);
|
| + var a = new Int8List(100);
|
| + expect(() => a.sublist(-90, -30), throwsRangeError);
|
| });
|
| }
|
|
|