| 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']);
|
| });
|
| }
|
|
|