summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-06-01 11:02:07 +0900
committerGitHub <[email protected]>2019-06-01 11:02:07 +0900
commit366617dbc1cbdc96292295f9d31b519579e6968f (patch)
tree23dc5850f72aaa7004ddfbaa342395ef0806d064
parent4677918676c779137cec4db00517164ebace7ab7 (diff)
parentc1e6f324c29d16014a8c6c27b9e27cf9af9fc1d5 (diff)
downloadmruby-366617dbc1cbdc96292295f9d31b519579e6968f.tar.gz
mruby-366617dbc1cbdc96292295f9d31b519579e6968f.zip
Merge pull request #4482 from shuujii/comment-out-the-empty-Array-bsearch_index-test
Comment out the empty `Array#bsearch_index` test
-rw-r--r--mrbgems/mruby-array-ext/test/array.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/mrbgems/mruby-array-ext/test/array.rb b/mrbgems/mruby-array-ext/test/array.rb
index 853554bcc..82f09297a 100644
--- a/mrbgems/mruby-array-ext/test/array.rb
+++ b/mrbgems/mruby-array-ext/test/array.rb
@@ -268,9 +268,9 @@ assert("Array#bsearch") do
end
end
-assert("Array#bsearch_index") do
- # tested through Array#bsearch
-end
+# tested through Array#bsearch
+#assert("Array#bsearch_index") do
+#end
assert("Array#delete_if") do
a = [1, 2, 3, 4, 5]