summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-07-08 00:20:56 +0900
committerYukihiro Matsumoto <[email protected]>2012-07-08 00:20:56 +0900
commit0d99856b57f172948c4e579c8f96cc19aa3d8568 (patch)
treea8f0b7c55a3ee86b317dbc7eecea69d7d0fa63cd /test
parentbecb7e98779914cdb1e5703ffe01ce408910523f (diff)
downloadmruby-0d99856b57f172948c4e579c8f96cc19aa3d8568.tar.gz
mruby-0d99856b57f172948c4e579c8f96cc19aa3d8568.zip
proper type check when creating a range; #345
Diffstat (limited to 'test')
-rw-r--r--test/t/bs_block.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/bs_block.rb b/test/t/bs_block.rb
index 654a9ba5c..bef9a8564 100644
--- a/test/t/bs_block.rb
+++ b/test/t/bs_block.rb
@@ -62,7 +62,7 @@ end
assert('BS Block 7') do
ans = []
for m in 1..3
- for n in 1..3
+ for n in 2..4
a = [m, n]
ans << a
end