Chromium Code Reviews| Index: tests/language/super_operator_test.dart |
| diff --git a/tests/language/super_operator_test.dart b/tests/language/super_operator_test.dart |
| index d47eb5472430dab9bd2b0a89e05fce82e4ab47fe..5cfbdde4254df95008c41917498f24b36ad221b2 100644 |
| --- a/tests/language/super_operator_test.dart |
| +++ b/tests/language/super_operator_test.dart |
| @@ -68,7 +68,7 @@ main () { |
| Expect.equals("r", a[2]); // operator [] of class A. |
| a = new B(); |
| - a += "Tell"; // operator + of class B. |
| + a += "Tell"; // operator + of class B. |
|
sra1
2017/03/21 03:28:14
might as well revert this file
|
| Expect.equals("TellTell", a.val); |
| Expect.equals("rr", a[2]); // operator [] of class B. |