| Index: tests/html/typing_test.dart
|
| diff --git a/tests/html/typing_test.dart b/tests/html/typing_test.dart
|
| index 68ba294af47eb1784b54dcb2422a67964c0310ab..570723e7a9642b88c2b1147e442f58e6e1fa3ac7 100644
|
| --- a/tests/html/typing_test.dart
|
| +++ b/tests/html/typing_test.dart
|
| @@ -1,4 +1,5 @@
|
| library TypingTest;
|
| +
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_config.dart';
|
| import 'dart:html';
|
| @@ -18,7 +19,9 @@ main() {
|
| }
|
| expect(counter, 1);
|
| counter = 0;
|
| - window.document.queryAll('body').forEach((e) { counter++; });
|
| + window.document.queryAll('body').forEach((e) {
|
| + counter++;
|
| + });
|
| expect(counter, 1);
|
| });
|
|
|
|
|