summaryrefslogtreecommitdiff
path: root/t/test-ldap-probe.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:47 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:47 +0000
commite716a49dabe2c086a97e2d8b3cffe5cf369ad026 (patch)
treee7e98125f89941db4c9d0f48f2df9c410467a3d8 /t/test-ldap-probe.rb
parentaf2ee063abea8235a8cbd1448533e4f4fbc0d0af (diff)
Removed spaces inside parenthesis.
Diffstat (limited to 't/test-ldap-probe.rb')
-rwxr-xr-xt/test-ldap-probe.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/t/test-ldap-probe.rb b/t/test-ldap-probe.rb
index 63e95a3..70b616b 100755
--- a/t/test-ldap-probe.rb
+++ b/t/test-ldap-probe.rb
@@ -29,12 +29,12 @@ class TestLDAPProbe < Test::Unit::TestCase
test = nil
assert_nothing_raised do
- test = Custodian::TestFactory.create( "auth.bytemark.co.uk must run ldap on 389 with username 'testing' with password 'bob' otherwise 'LDAP dead?'." )
+ test = Custodian::TestFactory.create("auth.bytemark.co.uk must run ldap on 389 with username 'testing' with password 'bob' otherwise 'LDAP dead?'.")
end
- assert( test.kind_of? Array )
- assert( ! test.empty? )
- assert_equal( test[0].get_type, 'ldap' )
+ assert(test.kind_of? Array)
+ assert(! test.empty?)
+ assert_equal(test[0].get_type, 'ldap')
end
@@ -57,10 +57,10 @@ class TestLDAPProbe < Test::Unit::TestCase
#
data.each do |str|
assert_raise ArgumentError do
- test = Custodian::TestFactory.create( str )
+ test = Custodian::TestFactory.create(str)
- assert( test.kind_of? Array )
- assert( ! test.empty? )
+ assert(test.kind_of? Array)
+ assert(! test.empty?)
end
end