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

Unified Diff: tests/lib_strong/mirrors/generic_bounded_test.dart

Issue 2774783002: Re-land "Format all multitests" (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/lib_strong/mirrors/generic_bounded_test.dart
diff --git a/tests/lib_strong/mirrors/generic_bounded_test.dart b/tests/lib_strong/mirrors/generic_bounded_test.dart
index 5afc22832724bcf4d1cb5ede86115df506bbe647..d0ea4274efd9ac65974d23897f1c59b5d4b59df8 100644
--- a/tests/lib_strong/mirrors/generic_bounded_test.dart
+++ b/tests/lib_strong/mirrors/generic_bounded_test.dart
@@ -20,7 +20,7 @@ bool inCheckedMode() {
try {
var s = 'string';
int i = s;
- } catch(e) {
+ } catch (e) {
return true;
}
return false;
@@ -44,7 +44,7 @@ main() {
typeArguments(genericOfBool, [reflectClass(bool)]); // //# 02: continued
typeArguments(superOfBool, [reflectClass(bool)]); // //# 02: continued
Expect.isFalse(inCheckedMode()); //# 02: continued
- } on TypeError catch(e) {
+ } on TypeError catch (e) {
Expect.isTrue(inCheckedMode());
}

Powered by Google App Engine
This is Rietveld 408576698