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 | 22b40326730fb7a4a8e2f5cb8d877f6a84494d02 (patch) | |
tree | c08f5ade5267c79cf3929bccc75dd4b704717500 /t/test-custodian-alertfactory.rb | |
parent | 5cc24f3a9a25a4214f1ee85a24960cce9f4f9516 (diff) |
Avoid "Array.new" and "Hash.new"
Instead use {} + ().
Diffstat (limited to 't/test-custodian-alertfactory.rb')
-rwxr-xr-x | t/test-custodian-alertfactory.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-custodian-alertfactory.rb b/t/test-custodian-alertfactory.rb index f81a763..e12dbdd 100755 --- a/t/test-custodian-alertfactory.rb +++ b/t/test-custodian-alertfactory.rb @@ -30,7 +30,7 @@ class TestAlertFactory < Test::Unit::TestCase # # Ensure we can create each of the two alert types we care about # - methods = Array.new() + methods = [] methods.push( "file" ) methods.push( "smtp" ) @@ -94,7 +94,7 @@ class TestAlertFactory < Test::Unit::TestCase obj = Custodian::AlertFactory.create( nil, nil ) end assert_raise ArgumentError do - obj = Custodian::AlertFactory.create( Array.new, nil ) + obj = Custodian::AlertFactory.create( [], nil ) end end |