diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-12-14 22:53:23 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-12-14 22:53:23 +0100 |
| commit | 51438c10c11ea251b9f8e8386415b45759432d7c (patch) | |
| tree | a19d3767739d51c911155553440a0ede58d01062 | |
| parent | c4e5bb518079714ec5d4d976aa2bca580b96b920 (diff) | |
Added empty context to expect_action for now.action-organizeImports
| -rw-r--r-- | src/testing/testing.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 6a6b80d..0220629 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -466,7 +466,7 @@ expect_action :: proc(t: ^testing.T, src: ^Source, expect_action_names: []string start = src.position, end = src.position, } - actions, ok := server.get_code_actions(src.document, input_range, &src.config) + actions, ok := server.get_code_actions(src.document, {}, input_range, &src.config) if !ok { log.error("Failed to find actions") } |