aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-21 06:41:09 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-21 06:41:09 +0000
commitb5395610503a4cedf6b8d347eaeae32a1ffd3839 (patch)
tree3c7866dfe2dee65bf745658827c6a1aa0100d5d6 /test
parenta0e8b3fbb6cd5e4862e3c05a851dfa4285590f62 (diff)
downloadruby-b5395610503a4cedf6b8d347eaeae32a1ffd3839.tar.gz
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/debug/test_debug.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/-ext-/debug/test_debug.rb b/test/-ext-/debug/test_debug.rb
index da66b1baf8..bc41c1bb79 100644
--- a/test/-ext-/debug/test_debug.rb
+++ b/test/-ext-/debug/test_debug.rb
@@ -57,19 +57,19 @@ class TestDebug < Test::Unit::TestCase
binds_check binds, bug7635
end
- class MyRelation
- include Enumerable
-
+ class MyRelation
+ include Enumerable
+
def each
yield :each_entry
- end
- end
-
+ end
+ end
+
def test_lazy_block
x = MyRelation.new.any? do
Bug::Debug.inspector
true
- end
+ end
assert_equal true, x, '[Bug #15105]'
end
end