| Index: tests/language/vm/canonicalization_preserves_deopt_test.dart
|
| diff --git a/tests/language/vm/canonicalization_preserves_deopt_test.dart b/tests/language/vm/canonicalization_preserves_deopt_test.dart
|
| index d030bf1316d70f416e20929f6ea2b0890add6b27..da282a5d6d086b13c1c67aba25b0c33e13cb57ba 100644
|
| --- a/tests/language/vm/canonicalization_preserves_deopt_test.dart
|
| +++ b/tests/language/vm/canonicalization_preserves_deopt_test.dart
|
| @@ -6,7 +6,7 @@
|
| import "package:expect/expect.dart";
|
|
|
| class X {
|
| - operator * (other) => "NaNNaNNaNNaNBatman";
|
| + operator *(other) => "NaNNaNNaNNaNBatman";
|
| }
|
|
|
| foo(x) => (x * 1.0) is double;
|
| @@ -38,4 +38,3 @@ main() {
|
| });
|
| Expect.isFalse(baz(new X()));
|
| }
|
| -
|
|
|