aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2023-12-29 17:44:50 +0100
committerDanielGavin <danielgavin5@hotmail.com>2023-12-29 17:44:50 +0100
commitd87fe143aeca52667413bd990a03d0bcac9386ed (patch)
tree1c2f9408f5678f9fbc1a3ebce00ad910f00eef26
parente93830d576ea387cc7dc635306ce07f43c515853 (diff)
Typo
-rw-r--r--tests/completions_test.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin
index 2e811a6..3553461 100644
--- a/tests/completions_test.odin
+++ b/tests/completions_test.odin
@@ -2517,7 +2517,7 @@ ast_poly_proc_matrix_type :: proc(t: ^testing.T) {
packages = packages[:],
}
- test.expect_completion_details(&t, &source, "", {"test.ptr: ^f32"})
+ test.expect_completion_details(t, &source, "", {"test.ptr: ^f32"})
}
@(test)
@@ -2541,7 +2541,7 @@ ast_poly_proc_matrix_constant_array :: proc(t: ^testing.T) {
packages = packages[:],
}
- test.expect_completion_details(&t, &source, "", {"test.ptr: [3]f32"})
+ test.expect_completion_details(t, &source, "", {"test.ptr: [3]f32"})
}
@(test)
@@ -2570,5 +2570,5 @@ ast_poly_proc_matrix_constant_array_2 :: proc(t: ^testing.T) {
packages = packages[:],
}
- test.expect_completion_details(&t, &source, "", {"test.myss: [10]f32"})
+ test.expect_completion_details(t, &source, "", {"test.myss: [10]f32"})
}