diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-27 21:30:18 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-29 15:49:12 -0400 |
| commit | e850d69ff432030fc890387df7bccfd00f91e318 (patch) | |
| tree | c40494ed2b08255d4f0f031460bb26ac88936c80 | |
| parent | 65adde811fedf1fd3054a736e9d2faf63fcfad31 (diff) | |
Update tests after merging changes
| -rw-r--r-- | tests/completions_test.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin index b69ed42..cda35f5 100644 --- a/tests/completions_test.odin +++ b/tests/completions_test.odin @@ -4092,7 +4092,7 @@ ast_completion_enum_global_array :: proc(t: ^testing.T) { `, } - test.expect_completion_details(t, &source, "", {"A", "B"}) + test.expect_completion_docs(t, &source, "", {"A", "B"}) } @(test) @@ -4113,5 +4113,5 @@ ast_completion_enum_array_in_proc_param :: proc(t: ^testing.T) { `, } - test.expect_completion_details(t, &source, "", {"A", "B"}) + test.expect_completion_docs(t, &source, "", {"A", "B"}) } |