1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_drb.rb: removed extra spaces

* test/drb/test_drb.rb (TestDRbLarge#test_02_large_ary): removed
  unnecessary extra spaces which make the following parentheses an
  expression.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60026 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-09-26 00:07:41 +00:00
parent 6a169a499b
commit c57eb143ec

View file

@ -315,9 +315,9 @@ class TestDRbLarge < Test::Unit::TestCase
ary = ["Hello, World"] * 10240
assert_equal(10240, @there.size(ary))
assert_equal(ary[0..ary.length].inject(:+), @there.sum(ary))
assert_raise (TypeError) {@there.multiply(ary)}
assert_raise (TypeError) {@there.avg(ary)}
assert_raise (TypeError) {@there.median(ary)}
assert_raise(TypeError) {@there.multiply(ary)}
assert_raise(TypeError) {@there.avg(ary)}
assert_raise(TypeError) {@there.median(ary)}
end
def test_03_large_ary