Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatskaari committed Oct 9, 2023
1 parent 448e73b commit a61f484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build_langserver/lsp/lsp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ func TestCompletionFunction(t *testing.T) {
Label: "plugin_repo",
Kind: lsp.CIKFunction,
InsertTextFormat: lsp.ITFPlainText,
TextEdit: textEdit("in_repo", 0, 4),
TextEdit: textEdit("plugin_repo", 0, 4),
Documentation: h.builtins["plugin_repo"].Stmt.FuncDef.Docstring,
}},
}, completions)
Expand Down Expand Up @@ -491,7 +491,7 @@ func TestCompletionPartialFunction(t *testing.T) {
Label: "plugin_repo",
Kind: lsp.CIKFunction,
InsertTextFormat: lsp.ITFPlainText,
TextEdit: textEdit("po", 0, 9),
TextEdit: textEdit("plugin_repo", 0, 9),
Documentation: h.builtins["plugin_repo"].Stmt.FuncDef.Docstring,
}},
}, completions)
Expand Down

0 comments on commit a61f484

Please sign in to comment.