| Index: samples/third_party/todomvc/test/listorder_test.dart
|
| diff --git a/samples/third_party/todomvc/test/listorder_test.dart b/samples/third_party/todomvc/test/listorder_test.dart
|
| index 1c06455a00fb35a12ec05945daec4fc5c96c9337..b854681ee215d70ca9405b3e486db468c2101252 100644
|
| --- a/samples/third_party/todomvc/test/listorder_test.dart
|
| +++ b/samples/third_party/todomvc/test/listorder_test.dart
|
| @@ -4,7 +4,6 @@
|
|
|
| library todomvc.test.listorder_test;
|
|
|
| -import 'dart:async';
|
| import 'dart:html';
|
| import 'package:polymer/polymer.dart';
|
| import 'package:unittest/unittest.dart';
|
| @@ -21,7 +20,7 @@ main() {
|
|
|
| final root = query('todo-app').shadowRoot;
|
|
|
| - setUp(() => new Future.delayed(Duration.ZERO));
|
| + setUp(() => Polymer.onReady);
|
|
|
| test('programmatically add items to model', () {
|
| appModel.todos.addAll([
|
|
|