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

Unified Diff: tests/language/scoped_variables_try_catch_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/scoped_variables_try_catch_test.dart
diff --git a/tests/language/scoped_variables_try_catch_test.dart b/tests/language/scoped_variables_try_catch_test.dart
index 575dbc5eadfbf77dc0d4d43d8bfe4bbb16098125..e18bec10fe219aae0554bd3c2e1abca8230ae83d 100644
--- a/tests/language/scoped_variables_try_catch_test.dart
+++ b/tests/language/scoped_variables_try_catch_test.dart
@@ -10,16 +10,14 @@ main() {
var a = bar();
try {
a = bar();
- } catch (e) {
- }
+ } catch (e) {}
Expect.equals(42, a);
{
var a = foo();
try {
a = foo();
- } catch (e) {
- }
+ } catch (e) {}
Expect.equals(54, a);
}

Powered by Google App Engine
This is Rietveld 408576698