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

Unified Diff: tests/language/switch_fallthru_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/switch_fallthru_test.dart
diff --git a/tests/language/switch_fallthru_test.dart b/tests/language/switch_fallthru_test.dart
index a3c8504bec37d3b5b1b3f28a15899908eb101442..0618032a4ae2f38b2102a056a1a36724c3e9dc1d 100644
--- a/tests/language/switch_fallthru_test.dart
+++ b/tests/language/switch_fallthru_test.dart
@@ -14,10 +14,10 @@ class SwitchFallthruTest {
break;
case 1:
result = "one";
- // fall-through, throw implicit FallThroughError here.
+ // fall-through, throw implicit FallThroughError here.
case 9:
result = "nine";
- // No implicit FallThroughError at end of switch statement.
+ // No implicit FallThroughError at end of switch statement.
}
return result;
}

Powered by Google App Engine
This is Rietveld 408576698