Fix test case

This commit is contained in:
Florian Schroedl
2022-01-20 17:00:00 +01:00
parent 3af4337d1e
commit fd8e0254f0

View File

@@ -4,7 +4,7 @@ import utils/str
suite "utils/str":
test "safeDelete":
let t = "abc"
check(t.safeDelete(0..0) == "abc")
check(t.safeDelete(0..0) == "bc")
check(t.safeDelete(0..1) == "c")
check(t.safeDelete(1..1) == "ac")