Commit b130f432 authored by robert's avatar robert Committed by GitHub

remove skip that shouldn't be necessary anymore.

the test should pass after https://github.com/mruby/mruby/commit/8f4a929e1a01c8d6176fb53a9ef5dff6de632959.
parent 8f4a929e
...@@ -464,12 +464,10 @@ if UTF8STRING ...@@ -464,12 +464,10 @@ if UTF8STRING
end end
assert('UTF8 byte counting') do assert('UTF8 byte counting') do
skip('string length is broken after []=')
# based on assert_equal 34, "helloó".rjust(34).length # based on assert_equal 34, "helloó".rjust(34).length
# see https://github.com/mruby/mruby/issues/3448
ret = ' ' ret = ' '
ret[-6..-1] = "helloó" ret[-6..-1] = "helloó"
assert_equal 34, ret.length assert_equal 34, ret.length
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment