Fix tests as they are not direct matches to small_array

This commit is contained in:
gingerBill
2026-03-12 17:33:54 +00:00
parent 26eb58b589
commit c7308d86d4
2 changed files with 7 additions and 7 deletions

View File

@@ -879,7 +879,7 @@ append_fixed_capacity_elems :: proc "contextless" (array: ^$T/[dynamic; $N]$E, #
Raw :: Raw_Fixed_Capacity_Dynamic_Array(N, E)
raw := (^Raw)(array)
n = min(N - len(args), len(args))
n = min(N - len(array), len(args))
when size_of(E) != 0 {
for i in 0..<n {