| Index: tests/language_strong/super_operator_test.dart
|
| diff --git a/tests/language_strong/super_operator_test.dart b/tests/language_strong/super_operator_test.dart
|
| index d47eb5472430dab9bd2b0a89e05fce82e4ab47fe..5cfbdde4254df95008c41917498f24b36ad221b2 100644
|
| --- a/tests/language_strong/super_operator_test.dart
|
| +++ b/tests/language_strong/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.
|
| Expect.equals("TellTell", a.val);
|
| Expect.equals("rr", a[2]); // operator [] of class B.
|
|
|
|
|