aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2023-04-03 22:29:04 +0200
committerDanielGavin <danielgavin5@hotmail.com>2023-04-03 22:29:04 +0200
commit7e317cb9ebb8cbcf9a8352ee38588855fd13a304 (patch)
tree71b7fbdfe41705220d2ee7b61441dfbb9464b7a6 /tests
parentbd0461b45a29f2b638252a8ff27ecdb764f1c4ec (diff)
Update completion tests
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 08c5a91..15b3386 100644
--- a/tests/completions_test.odin
+++ b/tests/completions_test.odin
@@ -1536,7 +1536,7 @@ ast_new_completion :: proc(t: ^testing.T) {
`,
}
- test.expect_completion_details(t, &source, "", {"test.adzz: int"})
+ test.expect_completion_details(t, &source, "", {"test.adzz: ^int"})
}
@(test)
@@ -1556,7 +1556,7 @@ ast_new_clone_completion :: proc(t: ^testing.T) {
`,
}
- test.expect_completion_details(t, &source, "", {"test.adzz: Foo"})
+ test.expect_completion_details(t, &source, "", {"test.adzz: ^Foo"})
}
@(test)