| Index: tests/compiler/dart2js/js_parser_test.dart
|
| diff --git a/tests/compiler/dart2js/js_parser_test.dart b/tests/compiler/dart2js/js_parser_test.dart
|
| index 5109ccfbb770cd7405ff1cdb1bafa7454fc4e129..db6f43abc92f823651afc7b077507752bc2dff1b 100644
|
| --- a/tests/compiler/dart2js/js_parser_test.dart
|
| +++ b/tests/compiler/dart2js/js_parser_test.dart
|
| @@ -96,7 +96,7 @@ void main() {
|
| // Empty object literal.
|
| testExpression('foo({}, {})');
|
| // *Can't handle non-empty object literals
|
| - testError('foo({meaning: 42})', 'Expected RBRACE');
|
| + testExpression('foo({meaning: 42})');
|
| // Literals.
|
| testExpression('x(false, true, null)');
|
| // *We should really throw here.
|
|
|