| Index: pkg/polymer/test/noscript_test.dart
|
| diff --git a/pkg/polymer/test/noscript_test.dart b/pkg/polymer/test/noscript_test.dart
|
| index bdbcb6f99b1d88c1b387cad7d3257c72ce5833f2..06cec774c48994524e85c70c42a433d69ecfb411 100644
|
| --- a/pkg/polymer/test/noscript_test.dart
|
| +++ b/pkg/polymer/test/noscript_test.dart
|
| @@ -30,16 +30,9 @@ main() => initPolymer().run(() {
|
| setUp(() => ready);
|
|
|
| test('template found with multiple noscript declarations', () {
|
| - expect(querySelector('x-a') is PolymerElement, isTrue);
|
| expect(querySelector('x-a').shadowRoot.nodes.first.text, 'a');
|
| -
|
| - expect(querySelector('x-c') is PolymerElement, isTrue);
|
| expect(querySelector('x-c').shadowRoot.nodes.first.text, 'c');
|
| -
|
| - expect(querySelector('x-b') is PolymerElement, isTrue);
|
| expect(querySelector('x-b').shadowRoot.nodes.first.text, 'b');
|
| -
|
| - expect(querySelector('x-d') is PolymerElement, isTrue);
|
| expect(querySelector('x-d').shadowRoot.nodes.first.text, 'd');
|
| });
|
| });
|
|
|