aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2023-07-17 16:41:51 +0200
committerDanielGavin <danielgavin5@hotmail.com>2023-07-17 16:41:51 +0200
commit4c168372c2b42704c771bdd8bcb5197020c91db8 (patch)
treee46f7f078dba9c1387c312b53cd734ec867cc0d9 /tests
parent255ad5958026dc3a3116f621eaebd501b8b26a22 (diff)
Fix inlay hints for -> calls, and also fix reference in for in range.
Diffstat (limited to 'tests')
-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 68efd37..8984b7d 100644
--- a/tests/completions_test.odin
+++ b/tests/completions_test.odin
@@ -2154,7 +2154,7 @@ ast_completion_struct_with_same_name_in_pkg :: proc(t: ^testing.T) {
}
@(test)
-zzast_completion_method_with_type :: proc(t: ^testing.T) {
+ast_completion_method_with_type :: proc(t: ^testing.T) {
packages := make([dynamic]test.Package)
append(
@@ -2183,5 +2183,5 @@ zzast_completion_method_with_type :: proc(t: ^testing.T) {
packages = packages[:],
}
- test.expect_completion_details(t, &source, ".", {"ib_a: int"})
+ test.expect_completion_details(t, &source, ".", {"A.lib_a: int"})
}