aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-17 01:29:24 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-17 01:29:24 +0000
commitb551e6258b96b8142a27c6bae25ad9b0eb1e622b (patch)
tree848f96566010255c7be710c5d14507dd640467b7 /test
parentf5d0f32e4650928b4a243d95b40ee1ed190b89cd (diff)
downloadruby-b551e6258b96b8142a27c6bae25ad9b0eb1e622b.tar.gz
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_gem_ext_rake_builder.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rubygems/test_gem_ext_rake_builder.rb b/test/rubygems/test_gem_ext_rake_builder.rb
index 9f59f51660..3229982778 100644
--- a/test/rubygems/test_gem_ext_rake_builder.rb
+++ b/test/rubygems/test_gem_ext_rake_builder.rb
@@ -53,7 +53,7 @@ class TestGemExtRakeBuilder < Gem::TestCase
assert_match %r%^#{Regexp.escape @@ruby} mkrf_conf\.rb%, output
assert_match %r%^#{Regexp.escape rake} RUBYARCHDIR=#{Regexp.escape @dest_path} RUBYLIBDIR=#{Regexp.escape @dest_path}%, output
end
- end
+ end
def test_class_build_fail
create_temp_mkrf_file("task :default do abort 'fail' end")
@@ -69,7 +69,7 @@ class TestGemExtRakeBuilder < Gem::TestCase
assert_match %r%^rake failed%, error.message
end
end
-
+
def create_temp_mkrf_file(rakefile_content)
File.open File.join(@ext, 'mkrf_conf.rb'), 'w' do |mkrf_conf|
mkrf_conf.puts <<-EO_MKRF