Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Unified Diff: tests/html/htmloptionscollection_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/html/htmloptionscollection_test.dart
diff --git a/tests/html/htmloptionscollection_test.dart b/tests/html/htmloptionscollection_test.dart
index cc5166a32fa26d052d93d7ca24cc4b9c90880381..46f7edde3b6ddd75beb91f434a83bb1dc6bbcab1 100644
--- a/tests/html/htmloptionscollection_test.dart
+++ b/tests/html/htmloptionscollection_test.dart
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
library HTMLOptionsCollectionTest;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
@@ -29,7 +30,9 @@ main() {
expect(optionsCollection[1].text, equals('Option1'));
expect(optionsCollection[2].text, equals('Option2'));
- expect(() { optionsCollection[0] = 1; }, throws);
+ expect(() {
+ optionsCollection[0] = 1;
+ }, throws);
// OPTIONALS optionsCollection[0] = new OptionElement(value: '42', data: 'Option42');
expect(() {

Powered by Google App Engine
This is Rietveld 408576698