diff --git a/crates/compiler/solve/tests/solve_expr.rs b/crates/compiler/solve/tests/solve_expr.rs index 12f334a957..e19faa2206 100644 --- a/crates/compiler/solve/tests/solve_expr.rs +++ b/crates/compiler/solve/tests/solve_expr.rs @@ -1493,14 +1493,13 @@ mod solve_expr { infer_eq( indoc!( r#" - # technically, an empty record can be destructured - {} = {} - thunk = \{} -> 42 + # technically, an empty record can be destructured + thunk = \{} -> 42 - xEmpty = if thunk {} == 42 then { x: {} } else { x: {} } + xEmpty = if thunk {} == 42 then { x: {} } else { x: {} } - when xEmpty is - { x: {} } -> {} + when xEmpty is + { x: {} } -> {} "# ), "{}",