fix failing test for 'PersistentVector.extendExistingMatch'. The test itself was wrong, as it forgets that lists are 0-indexed.

This commit is contained in:
2026-02-07 01:40:43 +00:00
parent 7fa573334f
commit 68be55342d

View File

@@ -608,7 +608,8 @@ struct
(* assert *)
val outputList = PersistentVector.toList pv
val expectedOutput =
[ {start = 1, finish = 1}
[ {start = 0, finish = 0}
, {start = 1, finish = 1}
, {start = 2, finish = 2}
, {start = 3, finish = 3}
, {start = 4, finish = 4}