Skip to content

Commit

Permalink
Remove path from test outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
voodoos committed Sep 20, 2023
1 parent 576182c commit cf6c7a9
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions tests/test-dirs/locate/issue1667.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,23 @@
> EOF

$ $MERLIN single locate -look-for mli -position 7:13 \
> -filename ./main.ml < ./main.ml | jq '.value'
> -filename ./main.ml < ./main.ml | jq '.value.pos'
{
"file": "$TESTCASE_ROOT/main.ml",
"pos": {
"line": 2,
"col": 2
}
"line": 2,
"col": 2
}

$ $MERLIN single locate -look-for ml -position 7:13 \
> -filename ./main.ml < ./main.ml | jq '.value'
> -filename ./main.ml < ./main.ml | jq '.value.pos'
{
"file": "$TESTCASE_ROOT/main.ml",
"pos": {
"line": 2,
"col": 2
}
"line": 2,
"col": 2
}


$ $MERLIN single locate -look-for mli -position 9:12 \
> -filename ./main.ml < ./main.ml | jq '.value'
> -filename ./main.ml < ./main.ml | jq '.value.pos'
{
"file": "$TESTCASE_ROOT/main.ml",
"pos": {
"line": 2,
"col": 2
}
"line": 2,
"col": 2
}

0 comments on commit cf6c7a9

Please sign in to comment.