Re-format and re-run all acceptance tests.
This commit is contained in:
@@ -6,10 +6,8 @@ test foo() {
|
||||
let xs =
|
||||
[1, 2, 3]
|
||||
when xs is {
|
||||
[x] ->
|
||||
x == 1
|
||||
_ ->
|
||||
whatever(xs)
|
||||
[x] -> x == 1
|
||||
_ -> whatever(xs)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,9 +15,7 @@ test bar() {
|
||||
let xs =
|
||||
[1, 2, 3]
|
||||
when xs is {
|
||||
[x] ->
|
||||
x == 1
|
||||
ys ->
|
||||
whatever(ys)
|
||||
[x] -> x == 1
|
||||
ys -> whatever(ys)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user