From 36ada1b318dcc0539c81bba3ef9db301f0eeb9fd Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 16 Mar 2012 08:38:20 +0000 Subject: [PATCH] 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 --- test/ruby/test_exception.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index f0d7d0fe07..d1a5514fad 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -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