Re-format and re-run all acceptance tests.
This commit is contained in:
@@ -1,23 +1,17 @@
|
||||
test foo_1() {
|
||||
let a =
|
||||
False
|
||||
let a = False
|
||||
when a is {
|
||||
True ->
|
||||
False
|
||||
False ->
|
||||
True
|
||||
True -> False
|
||||
False -> True
|
||||
}
|
||||
}
|
||||
|
||||
test foo_2() {
|
||||
let a =
|
||||
False
|
||||
let a = False
|
||||
let b =
|
||||
when a is {
|
||||
True ->
|
||||
14
|
||||
False ->
|
||||
42
|
||||
True -> 14
|
||||
False -> 42
|
||||
}
|
||||
b == 42
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user