Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeser committed Jun 16, 2023
1 parent 6bc2627 commit 9e3a6ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocaml-lsp-server/test/e2e-new/action_extract.ml
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ let f y =
let%expect_test "extract higher order function" =
extract_function_test {|
let f y =
$List.map y (fun y -> y + 1)$
$List.map (fun y -> y + 1) y$
|};
[%expect
{|
let fun_name y = List.map y (fun y -> y + 1)
let fun_name y = List.map (fun y -> y + 1) y

let f y =
fun_name y |}]
Expand Down

0 comments on commit 9e3a6ef

Please sign in to comment.