| Index: tests/lib_strong/html/htmloptionscollection_test.dart
 | 
| diff --git a/tests/lib_strong/html/htmloptionscollection_test.dart b/tests/lib_strong/html/htmloptionscollection_test.dart
 | 
| index 3c1eaaa1b5bb05ae02af04b8a4008b61ebf5d84f..127a8ee491f91fdd2e027f6b4ba114bd725f6c1a 100644
 | 
| --- a/tests/lib_strong/html/htmloptionscollection_test.dart
 | 
| +++ b/tests/lib_strong/html/htmloptionscollection_test.dart
 | 
| @@ -26,7 +26,9 @@ main() {
 | 
|      expect(optionsCollection[1].text, equals('Option1'));
 | 
|      expect(optionsCollection[2].text, equals('Option2'));
 | 
|  
 | 
| -    expect(() { (optionsCollection as dynamic)[0] = 1; }, throws);
 | 
| +    expect(() {
 | 
| +      (optionsCollection as dynamic)[0] = 1;
 | 
| +    }, throws);
 | 
|  
 | 
|      // OPTIONALS optionsCollection[0] = new OptionElement(value: '42', data: 'Option42');
 | 
|      expect(() {
 | 
| 
 |