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

Unified Diff: tests/language/stacktrace_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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/language/stacktrace_test.dart
diff --git a/tests/language/stacktrace_test.dart b/tests/language/stacktrace_test.dart
index 7ad6eee63bbb84c878f75b666a687886f73de911..20ddcb003a33fa8ddacb9b1fc1a100be61e56dc4 100644
--- a/tests/language/stacktrace_test.dart
+++ b/tests/language/stacktrace_test.dart
@@ -10,7 +10,7 @@ void main() {
var ex = new Exception("fail");
try {
throw ex;
- } on Exception catch(e, st) {
+ } on Exception catch (e, st) {
Expect.equals(ex, e);
Expect.isTrue(st.toString().endsWith("\n"));
}

Powered by Google App Engine
This is Rietveld 408576698