Fix word offset

which had weirdly been 1 off
(not weird that it was off, index bugs are common, but weird that the tests passed anyway)
This commit is contained in:
2019-09-24 12:58:31 +03:00
parent a446d3da6b
commit 7b9097a0b1
3 changed files with 5 additions and 5 deletions

View File

@ -98,10 +98,10 @@ module Parfait
assert_raises {one.set_char(3 , "s".ord)}
end
def test_max
str = "123456789012345678901234"
str = "12345678901234567890"
one = Parfait.new_word(str)
assert_equal str , one.to_string
assert_equal 24 , one.length
assert_equal 20 , one.length
end
end