aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-29 16:12:02 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-29 16:12:02 -0400
commitac4eba2c94fdc2d0ad12409eddd00b58b2f282bd (patch)
tree9c42b35c7f6c8bd9787d860e115abeac10695900 /tests
parent7e017dad9ac375429588758143dc278f7a62165c (diff)
Correct test after merging
Diffstat (limited to 'tests')
-rw-r--r--tests/completions_test.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin
index cda35f5..7bf13d1 100644
--- a/tests/completions_test.odin
+++ b/tests/completions_test.odin
@@ -3946,7 +3946,7 @@ ast_completion_using_aliased_package_multiple :: proc(t: ^testing.T) {
packages = packages[:],
}
- test.expect_completion_details(t, &source, ".", {"foo_pkg.foo: proc()"})
+ test.expect_completion_docs(t, &source, ".", {"foo_pkg.foo: proc()"})
}
@(test)