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

Unified Diff: tests/lib_strong/html/custom/constructor_calls_created_synchronously_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/lib_strong/html/custom/constructor_calls_created_synchronously_test.dart
diff --git a/tests/lib_strong/html/custom/constructor_calls_created_synchronously_test.dart b/tests/lib_strong/html/custom/constructor_calls_created_synchronously_test.dart
index b621efc9d86c13768fbcd23343df5fa5db276f32..a1804c9b7456d4615a349a4aedba209262932f3c 100644
--- a/tests/lib_strong/html/custom/constructor_calls_created_synchronously_test.dart
+++ b/tests/lib_strong/html/custom/constructor_calls_created_synchronously_test.dart
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
library constructor_calls_created_synchronously_test;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
@@ -55,7 +56,8 @@ main() {
extendsTag: 'section');
var fancy = document.createElement('section', 'fancy-section');
expect(fancy is FancySection, true, reason: 'fancy-section was registered');
- expect((fancy as FancySection).wasCreated, true, reason: 'FancySection ctor was called');
+ expect((fancy as FancySection).wasCreated, true,
+ reason: 'FancySection ctor was called');
});
}

Powered by Google App Engine
This is Rietveld 408576698