Chromium Code Reviews| Index: tests/compiler/dart2js/arithmetic_simplification_test.dart |
| diff --git a/tests/compiler/dart2js/arithmetic_simplification_test.dart b/tests/compiler/dart2js/arithmetic_simplification_test.dart |
| index 8b69d50a15c65dfc68cfc2dbd8357646c227ec48..9bb13c4fcaa845b2f61189662165e8c49fb80ce4 100644 |
| --- a/tests/compiler/dart2js/arithmetic_simplification_test.dart |
| +++ b/tests/compiler/dart2js/arithmetic_simplification_test.dart |
| @@ -81,7 +81,7 @@ main() { |
| asyncTest(() => Future.wait([ |
| compileAndDoNotMatch(INT_PLUS_ZERO, 'main', plusZero), |
| compileAndDoNotMatch(ZERO_PLUS_INT, 'main', zeroPlus), |
| - compileAndMatch(NUM_PLUS_ZERO, 'main', plusZero), |
| + compileAndMatch(NUM_PLUS_ZERO, 'main', plusZero, useMock: true), |
|
sigurdm
2015/09/10 06:37:51
Why is mock needed here? perhaps a comment?
Johnni Winther
2015/09/11 10:42:06
Added a TODO (needs more investigation)
|
| compileAndMatch(ZERO_PLUS_NUM, 'main', zeroPlus), |
| compileAndDoNotMatch(INT_TIMES_ONE, 'main', timesOne), |
| compileAndDoNotMatch(ONE_TIMES_INT, 'main', oneTimes), |