summaryrefslogtreecommitdiff
path: root/t/test-custodian-testfactory.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:10:32 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:10:32 +0000
commitfea454753efc4a673751131960c394254555d34a (patch)
tree47732a1c331c236f8f082dc4f6f5a6c6d6dab058 /t/test-custodian-testfactory.rb
parentedf0e675123e4869e2739d1bab0ed57b3b9f664c (diff)
Don't use parenthesis aroudn conditions in an if.
Diffstat (limited to 't/test-custodian-testfactory.rb')
-rwxr-xr-xt/test-custodian-testfactory.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-custodian-testfactory.rb b/t/test-custodian-testfactory.rb
index 6c71003..b067ab8 100755
--- a/t/test-custodian-testfactory.rb
+++ b/t/test-custodian-testfactory.rb
@@ -255,13 +255,13 @@ class TestTestFactory < Test::Unit::TestCase
# for each handler ..
registered[type].each do |name|
- if ( name.to_s =~ /protocoltest::(.*)Test$/i )
+ if name.to_s =~ /protocoltest::(.*)Test$/i
tst = $1.dup.downcase
#
# NOTE: Skip the DNS and LDAP tests - they are more complex.
#
- next if ( tst =~ /^(ldap|dns|dnsbl|sslcertificate)$/ )
+ next if tst =~ /^(ldap|dns|dnsbl|sslcertificate)$/
# normal
test_one = "http://foo.com/.com must run #{tst} on 1234"