summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-string-ext/test/string.rb
diff options
context:
space:
mode:
authorrobert <[email protected]>2017-02-11 07:40:55 +0000
committerGitHub <[email protected]>2017-02-11 07:40:55 +0000
commitb130f43298b03f2b1e8e1bf86c236a6f0caadfb3 (patch)
tree27e34f2b8ea1d78f6972c809212d04b058c49975 /mrbgems/mruby-string-ext/test/string.rb
parent8f4a929e1a01c8d6176fb53a9ef5dff6de632959 (diff)
downloadmruby-b130f43298b03f2b1e8e1bf86c236a6f0caadfb3.tar.gz
mruby-b130f43298b03f2b1e8e1bf86c236a6f0caadfb3.zip
remove skip that shouldn't be necessary anymore.
the test should pass after https://github.com/mruby/mruby/commit/8f4a929e1a01c8d6176fb53a9ef5dff6de632959.
Diffstat (limited to 'mrbgems/mruby-string-ext/test/string.rb')
-rw-r--r--mrbgems/mruby-string-ext/test/string.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/mrbgems/mruby-string-ext/test/string.rb b/mrbgems/mruby-string-ext/test/string.rb
index 996ad2669..9b7e99647 100644
--- a/mrbgems/mruby-string-ext/test/string.rb
+++ b/mrbgems/mruby-string-ext/test/string.rb
@@ -464,12 +464,10 @@ if UTF8STRING
end
assert('UTF8 byte counting') do
- skip('string length is broken after []=')
-
# based on assert_equal 34, "helloó".rjust(34).length
+ # see https://github.com/mruby/mruby/issues/3448
ret = ' '
ret[-6..-1] = "helloó"
-
assert_equal 34, ret.length
end
end