diff options
| -rw-r--r-- | tests/completions_test.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin index ef05a9f..9d9667f 100644 --- a/tests/completions_test.odin +++ b/tests/completions_test.odin @@ -1958,5 +1958,5 @@ ast_completion_with_pointer :: proc(t: ^testing.T) { `, } - test.expect_completion_details(&t, &source, "", {"test.my_pointer: ^int"}) + test.expect_completion_details(t, &source, "", {"test.my_pointer: ^int"}) } |