| Index: tests/standalone/status_expression_test.dart
|
| diff --git a/tests/standalone/status_expression_test.dart b/tests/standalone/status_expression_test.dart
|
| index 1c24c75991626f251b9f8cc19b6497bf40ad1579..03be619d10b60b48c5dc42299bfd686287eadfe2 100644
|
| --- a/tests/standalone/status_expression_test.dart
|
| +++ b/tests/standalone/status_expression_test.dart
|
| @@ -65,7 +65,8 @@ class StatusExpressionTest {
|
| } on Exception catch (e) {
|
| thrown = e;
|
| }
|
| - Expect.equals("Syntax error in '$input'", thrown.toString());
|
| + Expect.equals("FormatException: Syntax error in '$input'",
|
| + thrown.toString());
|
| }
|
|
|
| static void test4() {
|
| @@ -78,7 +79,8 @@ class StatusExpressionTest {
|
| } on Exception catch (e) {
|
| thrown = e;
|
| }
|
| - Expect.equals("Syntax error in '$input'", thrown.toString());
|
| + Expect.equals("FormatException: Syntax error in '$input'",
|
| + thrown.toString());
|
| }
|
|
|
| static void test5() {
|
|
|