Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Unified Diff: samples/third_party/todomvc/test/todomvc_listorder_test.html

Issue 14322008: Version 0.4.7.3 . (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698