diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-04-03 22:29:04 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-04-03 22:29:04 +0200 |
| commit | 7e317cb9ebb8cbcf9a8352ee38588855fd13a304 (patch) | |
| tree | 71b7fbdfe41705220d2ee7b61441dfbb9464b7a6 /tests | |
| parent | bd0461b45a29f2b638252a8ff27ecdb764f1c4ec (diff) | |
Update completion tests
Diffstat (limited to 'tests')
| -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 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) |