Index: tests/compiler/dart2js_extra/equals_test.dart |
diff --git a/tests/compiler/dart2js_extra/equals_test.dart b/tests/compiler/dart2js_extra/equals_test.dart |
index 0d20466154280d16a448c04fa36b5221ca726d5c..55cbc75a732394ecadc4e10fd4bc7422db5b65bd 100644 |
--- a/tests/compiler/dart2js_extra/equals_test.dart |
+++ b/tests/compiler/dart2js_extra/equals_test.dart |
@@ -10,7 +10,9 @@ void main() { |
throw "x != x with x == 3"; |
} |
var y = x; |
- if (true) { y = 10; } |
+ if (true) { |
+ y = 10; |
+ } |
if (x == y) throw "3 == 10"; |
if (y == true) throw "10 == true"; |
if (y == "str") throw "3 == 'str'"; |