circular_buffer icon indicating copy to clipboard operation
circular_buffer copied to clipboard

Fix slice unit test

Open fhunleth opened this issue 1 year ago • 0 comments

This fixes the unit test so that it matches the result of Enum.slice on a regular list.

iex> Enum.slice([1, 2, 3, 4, 5], -6, 5)
[1, 2, 3, 4, 5]

fhunleth avatar Sep 26 '24 19:09 fhunleth