Chromium Code Reviews| Index: tests/html/window_eq_test.dart |
| =================================================================== |
| --- tests/html/window_eq_test.dart (revision 14156) |
| +++ tests/html/window_eq_test.dart (working copy) |
| @@ -8,7 +8,7 @@ |
| var obfuscated = null; |
| test('notNull', () { |
| - Expect.isNotNull(window); |
| - Expect.isTrue(window != obfuscated); |
| + expect(window, isNotNull); |
| + expect(window, isNot(equals(obfuscated))); |
| }); |
| } |