1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix indent

* test/ruby/test_exception.rb (test_exception): fix indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-03-16 08:38:20 +00:00
parent 9faa910961
commit 36ada1b318

View file

@ -82,16 +82,16 @@ class TestException < Test::Unit::TestCase
assert(!$bad)
assert(catch(:foo) {
loop do
loop do
throw :foo, true
break
end
break
assert(false) # should no reach here
end
false
})
loop do
loop do
throw :foo, true
break
end
break
assert(false) # should no reach here
end
false
})
end