aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-11-14 02:29:17 +0800
committerMistivia <i@mistivia.com>2025-11-14 02:29:17 +0800
commitcd1d388a38e6113f284aa789144ad608c228b7e8 (patch)
tree707e0731fcb3dd765182c6cb7912fe8386f5ae73 /tests
parentd731583a050cff254fcc6360d1080e4b15afb939 (diff)
make show trait consistent
Diffstat (limited to 'tests')
-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 4aafc72..7889140 100644
--- a/tests/test_vec.c
+++ b/tests/test_vec.c
@@ -11,7 +11,7 @@ int main() {
for (int i = 0; i < 1000; i++) {
if (i == 10) {
- IntVector_show(&vec, stdout);
+ IntVector_show(vec, stdout);
puts("");
}
assert(vec.size == i);