aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 16:15:46 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 16:15:46 +0000
commita8760c495c43137ca0577dec3674de8fdd300e31 (patch)
treec92496a54ab371dfeb50d2cb5b8bbf7304c345b6
parentaf654b835c062009ab1175cf86fdad02d6498b98 (diff)
downloadruby-a8760c495c43137ca0577dec3674de8fdd300e31.tar.gz
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_refinement.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb
index 1a82ad8373..13f2d7a353 100644
--- a/test/ruby/test_refinement.rb
+++ b/test/ruby/test_refinement.rb
@@ -1624,7 +1624,7 @@ class TestRefinement < Test::Unit::TestCase
MethodMissing.call_undefined_method
end
end
-
+
module VisibleRefinements
module RefA
refine Object do
@@ -1642,7 +1642,7 @@ class TestRefinement < Test::Unit::TestCase
module RefC
using RefA
-
+
refine Object do
def in_ref_c
end
@@ -1658,7 +1658,7 @@ class TestRefinement < Test::Unit::TestCase
using RefC
USED_REFS = Module.used_refinements
end
-
+
module Combined
using RefA
using RefB