Index: tests/compiler/dart2js/logical_expression_test.dart |
diff --git a/tests/compiler/dart2js/logical_expression_test.dart b/tests/compiler/dart2js/logical_expression_test.dart |
index cead66c21812e44446835c605352e782048e4584..423a73a3e3a551f430877fc52f8598e785324191 100644 |
--- a/tests/compiler/dart2js/logical_expression_test.dart |
+++ b/tests/compiler/dart2js/logical_expression_test.dart |
@@ -31,9 +31,7 @@ main() { |
// if (t1 || gee.call$0() === true) gee.call$0(); |
// if (t1 || gee.call$0() === true) gee.call$0(); |
compileAndDoNotMatchFuzzy( |
- TEST_ONE, |
- 'foo', |
- r"""var x = [a-zA-Z0-9$.]+\(\) == true; |
+ TEST_ONE, 'foo', r"""var x = [a-zA-Z0-9$.]+\(\) == true; |
if \(x \|\| [a-zA-Z0-9$.]+\(\) === true\) [^;]+; |
if \(x \|\| [a-zA-Z0-9$.]+\(\) === true\) [^;]+;"""), |
@@ -42,10 +40,7 @@ main() { |
// if (t1) bar.call$0(); |
// if (t1 || bar.call$0() === true) bar.call$0(); |
// if (t1 || bar.call$0() === true) bar.call$0(); |
- compileAndMatchFuzzy( |
- TEST_TWO, |
- 'foo', |
- r"""var x = x == null; |
+ compileAndMatchFuzzy(TEST_TWO, 'foo', r"""var x = x == null; |
if \(x\) [^;]+; |
if \(x \|\| [a-zA-Z0-9$.]+\(\) === true\) [^;]+; |
if \(x \|\| [a-zA-Z0-9$.]+\(\) === true\) [^;]+;"""), |