Index: tests/html/window_eq_test.dart |
diff --git a/tests/html/window_eq_test.dart b/tests/html/window_eq_test.dart |
index 6995a90833f614f7ca3d47f08e1fe9e3e04c9040..cfd9cb7d11e9d72aa2c5ef7270a69c745e9c46fd 100644 |
--- a/tests/html/window_eq_test.dart |
+++ b/tests/html/window_eq_test.dart |
@@ -1,4 +1,5 @@ |
library WindowEqualityTest; |
+ |
import 'package:unittest/unittest.dart'; |
import 'package:unittest/html_config.dart'; |
import 'dart:html'; |
@@ -8,7 +9,7 @@ main() { |
var obfuscated = null; |
test('notNull', () { |
- expect(window, isNotNull); |
- expect(window, isNot(equals(obfuscated))); |
- }); |
+ expect(window, isNotNull); |
+ expect(window, isNot(equals(obfuscated))); |
+ }); |
} |