aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-27 21:30:18 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-29 15:49:12 -0400
commite850d69ff432030fc890387df7bccfd00f91e318 (patch)
treec40494ed2b08255d4f0f031460bb26ac88936c80
parent65adde811fedf1fd3054a736e9d2faf63fcfad31 (diff)
Update tests after merging changes
-rw-r--r--tests/completions_test.odin4
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"})
}