summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-16 06:41:05 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-16 06:41:05 +0000
commit1e6ced13be0646ea1d16f0791072441673d100d0 (patch)
treee27998dd5a45937361f0e079e1cdba8b6dfc8a36
parentdf03463ff22cf54dc71713e2d92b99b7168430db (diff)
remove trailing spaces
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/rake/test_rake_reduce_compat.rb4
-rw-r--r--test/rake/test_rake_top_level_functions.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/rake/test_rake_reduce_compat.rb b/test/rake/test_rake_reduce_compat.rb
index 6ce42b9f8e..9a82687816 100644
--- a/test/rake/test_rake_reduce_compat.rb
+++ b/test/rake/test_rake_reduce_compat.rb
@@ -8,7 +8,7 @@ class TestRakeReduceCompat < Rake::TestCase
bin_rake = File.expand_path('../../../bin/rake', __FILE__)
Open3.popen3(RUBY, "-I", lib, bin_rake, *args) { |_, out, _, _| out.read }
end
-
+
def invoke_normal(task_name)
rake task_name.to_s
end
@@ -27,7 +27,7 @@ class TestRakeReduceCompat < Rake::TestCase
Module.new { p defined?(file) }
end
}
-
+
assert_equal %{"method"}, invoke_normal(:check_task).chomp
assert_equal %{"method"}, invoke_normal(:check_file).chomp
diff --git a/test/rake/test_rake_top_level_functions.rb b/test/rake/test_rake_top_level_functions.rb
index 1ed1af02e3..4cc4b4cfdd 100644
--- a/test/rake/test_rake_top_level_functions.rb
+++ b/test/rake/test_rake_top_level_functions.rb
@@ -23,7 +23,7 @@ class TestRakeTopLevelFunctions < Rake::TestCase
def test_namespace
block = proc do end
- namespace("xyz", &block)
+ namespace("xyz", &block)
expected = [
[[:in_namespace, 'xyz'], block]