Skip to content

Commit 6b21d8b

Browse files
munificentCommit Queue
authored andcommitted
Format tests/language/b*.
Change-Id: I4eb9cf0604a8a0e5227ab8f31db8309cbcabb336 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/400147 Auto-Submit: Bob Nystrom <[email protected]> Commit-Queue: Bob Nystrom <[email protected]> Reviewed-by: Lasse Nielsen <[email protected]>
1 parent d82e84c commit 6b21d8b

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

tests/language/bool/bool_test.dart

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,28 +53,36 @@ class BoolTest {
5353
if (identical(false, true)) {
5454
throw "Expect.equals broken";
5555
}
56-
if (true == true) {} else {
56+
if (true == true) {
57+
} else {
5758
throw "Expect.equals broken";
5859
}
59-
if (false == false) {} else {
60+
if (false == false) {
61+
} else {
6062
throw "Expect.equals broken";
6163
}
62-
if (identical(true, true)) {} else {
64+
if (identical(true, true)) {
65+
} else {
6366
throw "Expect.equals broken";
6467
}
65-
if (identical(false, false)) {} else {
68+
if (identical(false, false)) {
69+
} else {
6670
throw "Expect.equals broken";
6771
}
68-
if (true != false) {} else {
72+
if (true != false) {
73+
} else {
6974
throw "Expect.equals broken";
7075
}
71-
if (false != true) {} else {
76+
if (false != true) {
77+
} else {
7278
throw "Expect.equals broken";
7379
}
74-
if (!identical(true, false)) {} else {
80+
if (!identical(true, false)) {
81+
} else {
7582
throw "Expect.equals broken";
7683
}
77-
if (!identical(false, true)) {} else {
84+
if (!identical(false, true)) {
85+
} else {
7886
throw "Expect.equals broken";
7987
}
8088
if (true != true) {

0 commit comments

Comments
 (0)