diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-01-16 23:04:29 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-01-16 23:04:29 +0100 |
| commit | 421a620e731886bb76d6831a1b617d9e7cd9e873 (patch) | |
| tree | cdc4328d3c400d48ec08b4dc27e4daf446dfd740 /tests | |
| parent | d7f451a16cb584a98044e9035d7aab00ee04172a (diff) | |
Refractor code for locals
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/completions_test.odin | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin index 10b47fc..aef5e14 100644 --- a/tests/completions_test.odin +++ b/tests/completions_test.odin @@ -896,12 +896,7 @@ ast_overload_with_any_int_index_completion :: proc(t: ^testing.T) { packages = packages[:], } - test.expect_completion_details( - t, - &source, - ".", - {"my_package.my_value: bool"}, - ) + test.expect_completion_details(t, &source, ".", {"test.my_value: bool"}) } |