Index: tests/compiler/dart2js/js_backend_cps_ir_supercall_test.dart |
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_supercall_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_supercall_test.dart |
index aa72895a4570087c452df9c78246fb1281748586..332af73c4204747f71c9d40b27b07816de4f874a 100644 |
--- a/tests/compiler/dart2js/js_backend_cps_ir_supercall_test.dart |
+++ b/tests/compiler/dart2js/js_backend_cps_ir_supercall_test.dart |
@@ -23,7 +23,7 @@ main() { |
}""", |
r""" |
function(x) { |
- return V.Base.prototype.m$1.call(this, J.getInterceptor$ns(x).$add(x, 10)); |
+ return V.Base.prototype.m$1.call(this, x + 10); |
}"""), |
// Reenable when we support compiling functions that |