| Index: tests/compiler/dart2js/type_equals_test.dart
|
| diff --git a/tests/compiler/dart2js/type_equals_test.dart b/tests/compiler/dart2js/type_equals_test.dart
|
| index 06af4def5ea362ef357d04b9a7d50896a1603f41..45b36a061b2e50ad7684a1205935f262535d65fb 100644
|
| --- a/tests/compiler/dart2js/type_equals_test.dart
|
| +++ b/tests/compiler/dart2js/type_equals_test.dart
|
| @@ -53,8 +53,7 @@ test(compiler, String name1, String name2, {bool expect}) {
|
|
|
| void main() {
|
| var uri = new Uri(scheme: 'source');
|
| - var compiler = compilerFor(
|
| - r"""
|
| + var compiler = compilerFor(r"""
|
| typedef int Typedef1<X,Y>(String s1);
|
| typedef void Typedef2<Z>(T t1, S s1);
|
|
|
| @@ -86,10 +85,7 @@ void main() {
|
| }
|
|
|
| void main() {}
|
| - """,
|
| - uri,
|
| - analyzeAll: true,
|
| - analyzeOnly: true);
|
| + """, uri, analyzeAll: true, analyzeOnly: true);
|
| asyncTest(() => compiler.run(uri).then((_) {
|
| test(compiler, "void1", "void2", expect: true);
|
| test(compiler, "int1", "int2", expect: true);
|
|
|