| Index: tests/html/htmloptionscollection_test.dart
|
| diff --git a/tests/html/htmloptionscollection_test.dart b/tests/html/htmloptionscollection_test.dart
|
| index d97a59454a2aa9c420d1bd2ccfe99c7e3d341c8d..7f0657eb68c0ee118899c6f1d7561e9c2602dd6f 100644
|
| --- a/tests/html/htmloptionscollection_test.dart
|
| +++ b/tests/html/htmloptionscollection_test.dart
|
| @@ -31,7 +31,8 @@ main() {
|
|
|
| expect(() { optionsCollection[0] = 1; }, throws);
|
|
|
| - optionsCollection[0] = new OptionElement(value: '42', data: 'Option42');
|
| + // OPTIONALS optionsCollection[0] = new OptionElement(value: '42', data: 'Option42');
|
| + optionsCollection[0] = new OptionElement('Option42', '42');
|
| expect(optionsCollection[0].value, equals('42'));
|
| expect(optionsCollection[0].text, equals('Option42'));
|
| });
|
|
|