Skip to content

Commit

Permalink
reverting test differences
Browse files Browse the repository at this point in the history
  • Loading branch information
awilliambauer committed May 20, 2024
1 parent e34b419 commit 502fb5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocaml-lsp-server/test/e2e-new/code_actions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ let f (x : t) = x
{
"edits": [
{
"newText": "match x with | Foo _ -> _ | Bar _ -> _",
"newText": "match x with Foo _ -> _ | Bar _ -> _\n",
"range": {
"end": { "character": 17, "line": 2 },
"start": { "character": 16, "line": 2 }
Expand Down Expand Up @@ -539,7 +539,7 @@ let f (x : t) = x
{
"edits": [
{
"newText": "type t = Foo of int | Bar of bool\nval f : t -> t\n",
"newText": "type t = Foo of int | Bar of bool\n\nval f : t -> t\n",
"range": {
"end": { "character": 0, "line": 0 },
"start": { "character": 0, "line": 0 }
Expand Down

0 comments on commit 502fb5f

Please sign in to comment.