* remove trailing spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2017-11-29 08:39:48 +00:00
parent 7735502d2c
commit 6839932a2d

View File

@ -2018,10 +2018,10 @@ class TestRefinement < Test::Unit::TestCase
puts "M1#foo"
end
end
module M2
end
module UnusedRefinement
refine(M2) do
def foo
@ -2029,7 +2029,7 @@ class TestRefinement < Test::Unit::TestCase
end
end
end
include M1
include M2
foo()