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:
parent
6a169a499b
commit
c57eb143ec
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue