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(!$bad)
assert(catch(:foo) { assert(catch(:foo) {
loop do loop do
loop do loop do
throw :foo, true throw :foo, true
break break
end end
break break
assert(false) # should no reach here assert(false) # should no reach here
end end
false false
}) })
end end