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

Unified Diff: tests/language_strong/stacktrace_rethrow_error_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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/language_strong/stacktrace_rethrow_error_test.dart
diff --git a/tests/language_strong/stacktrace_rethrow_error_test.dart b/tests/language_strong/stacktrace_rethrow_error_test.dart
index 64ca5e9cbd01d127bdac4fd864d085d3ba0bf0b8..f2a7e2e5306d5a7d4f0f749d5eb9cfba3ceafca0 100644
--- a/tests/language_strong/stacktrace_rethrow_error_test.dart
+++ b/tests/language_strong/stacktrace_rethrow_error_test.dart
@@ -13,10 +13,10 @@ aa1() {
bb1();
fail();
} catch(error
- , stacktrace /// withtraceparameter: ok
+ , stacktrace //# withtraceparameter: ok
) {
expectTrace(['gg1', 'ff1', 'ee1', 'dd1', 'cc1', 'bb1', 'aa1'], error.stackTrace);
- expectTrace(['gg1', 'ff1', 'ee1', 'dd1', 'cc1', 'bb1', 'aa1'], stacktrace); /// withtraceparameter: continued
+ expectTrace(['gg1', 'ff1', 'ee1', 'dd1', 'cc1', 'bb1', 'aa1'], stacktrace); //# withtraceparameter: continued
}
}
@@ -53,10 +53,10 @@ aa2() {
bb2();
fail();
} catch(error
- , stacktrace /// withtraceparameter: continued
+ , stacktrace //# withtraceparameter: continued
) {
expectTrace(['gg2', 'ff2', 'ee2', 'dd2', 'cc2', 'bb2', 'aa2'], error.stackTrace);
- expectTrace(['gg2', 'ff2', 'ee2', 'dd2', 'cc2', 'bb2', 'aa2'], stacktrace); /// withtraceparameter: continued
+ expectTrace(['gg2', 'ff2', 'ee2', 'dd2', 'cc2', 'bb2', 'aa2'], stacktrace); //# withtraceparameter: continued
}
}
@@ -93,10 +93,10 @@ aa3() {
bb3();
fail();
} catch(error
- , stacktrace /// withtraceparameter: continued
+ , stacktrace //# withtraceparameter: continued
) {
expectTrace(['gg3', 'ff3', 'ee3', 'dd3', 'cc3', 'bb3', 'aa3'], error.stackTrace);
- expectTrace(['cc3', 'bb3', 'aa3'], stacktrace); /// withtraceparameter: continued
+ expectTrace(['cc3', 'bb3', 'aa3'], stacktrace); //# withtraceparameter: continued
}
}

Powered by Google App Engine
This is Rietveld 408576698