Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(737)

Unified Diff: tests/standalone/status_expression_test.dart

Issue 13724021: Remove deprecated Expect from the libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..7a8aaaa14d6a2355dccd2e914669b4dcd90724d3 100644
--- a/tests/standalone/status_expression_test.dart
+++ b/tests/standalone/status_expression_test.dart
@@ -65,7 +65,7 @@ class StatusExpressionTest {
} on Exception catch (e) {
thrown = e;
}
- Expect.equals("Syntax error in '$input'", thrown.toString());
+ Expect.equals("Exception: Syntax error in '$input'", thrown.toString());
}
static void test4() {
@@ -78,7 +78,7 @@ class StatusExpressionTest {
} on Exception catch (e) {
thrown = e;
}
- Expect.equals("Syntax error in '$input'", thrown.toString());
+ Expect.equals("Exception: Syntax error in '$input'", thrown.toString());
}
static void test5() {

Powered by Google App Engine
This is Rietveld 408576698