| Index: test/data/input/list5_test.html
|
| diff --git a/test/data/input/list5_test.html b/test/data/input/list5_test.html
|
| index 23852154a6b3bd880aa6ccbfc1f1a164b21c78df..041696e5946e9d7a914437d8477d13a88ce478ec 100644
|
| --- a/test/data/input/list5_test.html
|
| +++ b/test/data/input/list5_test.html
|
| @@ -8,7 +8,6 @@
|
| <head>
|
| <meta charset="utf-8">
|
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
| - <title>list_null_test</title>
|
| <script type='application/javascript' src="testing.js"></script>
|
| </head>
|
| <body>
|
| @@ -18,14 +17,13 @@
|
| </template>
|
| <script type="application/dart">
|
| import 'dart:html';
|
| - import 'package:web_ui/watcher.dart';
|
| - var list = ['a', 'b', 'c'];
|
| + import 'package:web_ui/observe.dart';
|
| + @observable var list = toObservable(['a', 'b', 'c']);
|
|
|
| main() {
|
| window.setTimeout(() {
|
| list[1] = '?';
|
| - dispatch();
|
| - window.setTimeout(() => window.postMessage('done', '*'), 0);
|
| + window.setImmediate(() => window.postMessage('done', '*'));
|
| }, 0);
|
| }
|
| </script>
|
|
|