| Index: samples/third_party/todomvc/test/todomvc_listorder_test.html
|
| ===================================================================
|
| --- samples/third_party/todomvc/test/todomvc_listorder_test.html (revision 21601)
|
| +++ samples/third_party/todomvc/test/todomvc_listorder_test.html (working copy)
|
| @@ -40,15 +40,15 @@
|
| locationHash = '#/';
|
|
|
| deliverChangesSync();
|
| - expect(queryAll('#todo-list todo-row').length, 3);
|
| + expect(queryAll('#todo-list li[is=todo-row]').length, 3);
|
|
|
| locationHash = '#/active';
|
| deliverChangesSync();
|
| - expect(queryAll('#todo-list todo-row').length, 2);
|
| + expect(queryAll('#todo-list li[is=todo-row]').length, 2);
|
|
|
| locationHash = '#/completed';
|
| deliverChangesSync();
|
| - expect(queryAll('#todo-list todo-row').length, 1);
|
| + expect(queryAll('#todo-list li[is=todo-row]').length, 1);
|
|
|
| locationHash = '#/';
|
| deliverChangesSync();
|
|
|