aboutsummaryrefslogtreecommitdiff
path: root/tests/test_vec.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_vec.c')
-rw-r--r--tests/test_vec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_vec.c b/tests/test_vec.c
index 4cbc96f..6abdd78 100644
--- a/tests/test_vec.c
+++ b/tests/test_vec.c
@@ -11,7 +11,7 @@ int main() {
for (int i = 0; i < 1000; i++) {
assert(vec.size == i);
- IntVector_push_back(&vec, &i);
+ IntVector_push_back(&vec, i);
assert(*(IntVector_end(&vec) - 1) == i);
}
assert(*IntVector_begin(&vec) == 0);