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

Unified Diff: tests/language/issue20476_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/issue20476_test.dart
diff --git a/tests/language/issue20476_test.dart b/tests/language/issue20476_test.dart
index 35890a672dc6476dd2b20129c02a0d757dbfb945..f0202be6010a7eb59b99fb5efc0f6bf592a7ed86 100644
--- a/tests/language/issue20476_test.dart
+++ b/tests/language/issue20476_test.dart
@@ -8,17 +8,14 @@ foo() {
try {
try {
return 1;
- } catch (e1) {
- } finally {
+ } catch (e1) {} finally {
return 3;
}
- } catch (e2) {
- } finally {
+ } catch (e2) {} finally {
return 5;
}
}
-
main() {
Expect.equals(5, foo());
}

Powered by Google App Engine
This is Rietveld 408576698