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

* remove trailing spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2018-09-21 06:41:09 +00:00
parent ac4b2d990c
commit 02cb9c932a

View file

@ -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