summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 08:38:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 08:38:20 +0000
commit36ada1b318dcc0539c81bba3ef9db301f0eeb9fd (patch)
tree5c8c6c1c8f50846f38093667035479fc16784368 /test/ruby
parent9faa910961511e9154abe9464bc4a1c848c5bed9 (diff)
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
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_exception.rb20
1 files 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