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