| Index: tests/corelib/symbol_operator_test.dart
|
| diff --git a/tests/corelib/symbol_operator_test.dart b/tests/corelib/symbol_operator_test.dart
|
| index 13cd8bce67c42dceb8fbcd60d9181610ecfc9007..981f44bedfe8f7838db4115dfc6041ad900d61de 100644
|
| --- a/tests/corelib/symbol_operator_test.dart
|
| +++ b/tests/corelib/symbol_operator_test.dart
|
| @@ -24,8 +24,8 @@ main() {
|
| testSymbol(#>, $>$, ">");
|
| testSymbol(#>=, $>=$, ">=");
|
| testSymbol(#==, new Symbol("=="), "=="); // Can't hit noSuchMethod.
|
| - testSymbol(#[], $[$], "[]"); /// 01: ok
|
| - testSymbol(#[]=, ($[$]=$).lastMember, "[]="); /// 02: ok
|
| + testSymbol(#[], $[$], "[]");
|
| + testSymbol(#[]=, ($[$]=$).lastMember, "[]=");
|
| testSymbol(const Symbol("unary-"), -$, "unary-");
|
|
|
| testSymbolThrows(">>>"); /// 03: ok
|
|
|