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

Unified Diff: tests/lib_strong/html/window_mangling_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/window_mangling_test.dart
diff --git a/tests/lib_strong/html/window_mangling_test.dart b/tests/lib_strong/html/window_mangling_test.dart
index 46f03c85c9913f90d5a8b647dce54d516e05e79a..f427a34d8f2131f5cae9316aafb18b30a2a26365 100644
--- a/tests/lib_strong/html/window_mangling_test.dart
+++ b/tests/lib_strong/html/window_mangling_test.dart
@@ -16,18 +16,18 @@ main() {
var win = dom.window;
test('windowMethod', () {
- final message = navigator;
- final x = win.navigator;
- expect(x, notEquals(message));
- });
+ final message = navigator;
+ final x = win.navigator;
+ expect(x, notEquals(message));
+ });
test('windowEquals', () {
- expect($eq(win, win), isFalse);
- expect(win == win, isTrue);
- });
+ expect($eq(win, win), isFalse);
+ expect(win == win, isTrue);
+ });
test('windowEquals', () {
- expect($eq$(win, win), isFalse);
- expect(win == win, isTrue);
- });
+ expect($eq$(win, win), isFalse);
+ expect(win == win, isTrue);
+ });
}

Powered by Google App Engine
This is Rietveld 408576698