diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-27 19:17:55 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-29 15:49:12 -0400 |
| commit | ca1e78574de49aa5b73df422736cdf4b0f093ecd (patch) | |
| tree | a4da4fbf290851deeeebcbddff0c46311a5e7bd3 /tests | |
| parent | 83d6bd2630fbcba45a3c912c4a141e4995def4f8 (diff) | |
Implement label details using new method
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/completions_test.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin index 9f01590..b704af3 100644 --- a/tests/completions_test.odin +++ b/tests/completions_test.odin @@ -258,7 +258,7 @@ ast_completion_identifier_proc_group :: proc(t: ^testing.T) { packages = {}, } - test.expect_completion_docs(t, &source, "", {"test.group_function: proc"}) + test.expect_completion_docs(t, &source, "", {"test.group_function: proc (..)"}) } @(test) |