diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:08:33 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:08:33 +0000 |
commit | 3a96cc957dbd97c6ffeaea42f738e7c35b4acbc7 (patch) | |
tree | 1a709ddc989f52f065b681e0ee80265c31647ca4 /t/test-custodian-util-ping.rb | |
parent | d0f94ecdf76f1a3ff9e2d0e5c0f654c2089561cd (diff) |
Avoid "Array.new" and "Hash.new"
Instead use {} + ().
Diffstat (limited to 't/test-custodian-util-ping.rb')
-rwxr-xr-x | t/test-custodian-util-ping.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-custodian-util-ping.rb b/t/test-custodian-util-ping.rb index efeef64..3dd363a 100755 --- a/t/test-custodian-util-ping.rb +++ b/t/test-custodian-util-ping.rb @@ -49,10 +49,10 @@ class TestPingUtil < Test::Unit::TestCase # A hostname is a string, not an array, hash, or similar. # assert_raise ArgumentError do - Custodian::Util::Ping.new( Hash.new) + Custodian::Util::Ping.new( {}) end assert_raise ArgumentError do - Custodian::Util::Ping.new( Array.new) + Custodian::Util::Ping.new( []) end |