| Index: tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| index a444de905e2f9bf1f3572118ba465929280df983..0e5808a2c846b4e96cf0788f1318272fe6398459 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
|
| @@ -130,7 +130,8 @@ main() {
|
| }
|
| }""","""
|
| function() {
|
| - P.identical(V.foo(), true) ? P.print("bad") : P.print("good");
|
| + V.foo();
|
| + P.print("good");
|
| return null;
|
| }"""),
|
| ];
|
|
|