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

Unified Diff: pkg/polymer/test/publish_attributes_test.dart

Issue 132403010: big update to observe, template_binding, polymer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: pkg/polymer/test/publish_attributes_test.dart
diff --git a/pkg/polymer/test/publish_attributes_test.dart b/pkg/polymer/test/publish_attributes_test.dart
index 8701a7b080e5b245dbd0f948fff3bc7403b28664..78bd593d78bd542a4348793592ee06599ffc231d 100644
--- a/pkg/polymer/test/publish_attributes_test.dart
+++ b/pkg/polymer/test/publish_attributes_test.dart
@@ -62,10 +62,10 @@ main() {
published(tag) => (query('polymer-element[name=$tag]')
as PolymerDeclaration).publishedProperties;
- expect(published('x-foo'), [#Foo, #baz]);
- expect(published('x-bar'), [#Foo, #baz, #Bar]);
- expect(published('x-zot'), [#Foo, #baz, #Bar, #zot]);
- expect(published('x-squid'), [#Foo, #baz, #Bar, #zot, #squid]);
- expect(published('x-qux'), [#qux]);
+ expect(published('x-foo'), ['Foo', 'baz']);
+ expect(published('x-bar'), ['Foo', 'baz', 'Bar']);
+ expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']);
+ expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']);
+ expect(published('x-qux'), ['qux']);
});
}
« no previous file with comments | « pkg/polymer/test/property_observe_test.html ('k') | pkg/polymer/test/publish_inherited_properties_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698