| Index: test/data/input/component_field_test.html
|
| diff --git a/test/data/input/component_field_test.html b/test/data/input/component_field_test.html
|
| index 1c07ebcb39e14efeaaed7c39f9a5bf872d779d70..a1954f76f37bba268e3ee0b5e6f6f8bca96062ae 100644
|
| --- a/test/data/input/component_field_test.html
|
| +++ b/test/data/input/component_field_test.html
|
| @@ -37,10 +37,17 @@
|
| <script type="application/dart">
|
| import 'dart:html';
|
| import 'package:unittest/unittest.dart';
|
| + import 'package:web_ui/observe.dart';
|
| +
|
| + @observable
|
| + var greetings = toObservable(['hello', 'hi']);
|
| +
|
| + @observable
|
| + var names = toObservable(['world', 'universe']);
|
| +
|
| + @observable
|
| + var endings = toObservable(['??', '!!']);
|
|
|
| - var greetings = ['hello', 'hi'];
|
| - var names = ['world', 'universe'];
|
| - var endings = ['??', '!!'];
|
| main() {
|
| window.setTimeout(() {
|
| expect(query('x-greeter').attributes, { 'title': 'world' });
|
|
|