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@37672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-11-16 06:41:05 +00:00
parent df03463ff2
commit 1e6ced13be
2 changed files with 3 additions and 3 deletions

View file

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

View file

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