diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:47 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:47 +0000 |
commit | e716a49dabe2c086a97e2d8b3cffe5cf369ad026 (patch) | |
tree | e7e98125f89941db4c9d0f48f2df9c410467a3d8 /t/test-custodian-settings.rb | |
parent | af2ee063abea8235a8cbd1448533e4f4fbc0d0af (diff) |
Removed spaces inside parenthesis.
Diffstat (limited to 't/test-custodian-settings.rb')
-rwxr-xr-x | t/test-custodian-settings.rb | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/t/test-custodian-settings.rb b/t/test-custodian-settings.rb index 1923b0f..74f881b 100755 --- a/t/test-custodian-settings.rb +++ b/t/test-custodian-settings.rb @@ -32,9 +32,9 @@ class TestConfigurationSingleton < Test::Unit::TestCase a = Custodian::Settings.instance b = Custodian::Settings.instance - assert( a ) - assert( b ) - assert_equal( a.object_id, b.object_id ) + assert(a) + assert(b) + assert_equal(a.object_id, b.object_id) end @@ -47,37 +47,37 @@ class TestConfigurationSingleton < Test::Unit::TestCase # retry delay - probably unset. a = settings.retry_delay - assert( a.class == Fixnum ) + assert(a.class == Fixnum) # store a number - settings._store( 'retry_delay', 5 ) + settings._store('retry_delay', 5) a = settings.retry_delay - assert( a.class == Fixnum ) - assert( a == 5 ) + assert(a.class == Fixnum) + assert(a == 5) # store a string - settings._store( 'retry_delay', '35' ) + settings._store('retry_delay', '35') a = settings.retry_delay - assert( a.class == Fixnum ) - assert( a == 35 ) + assert(a.class == Fixnum) + assert(a == 35) # timeout - probably unset. a = settings.timeout - assert( a.class == Fixnum ) + assert(a.class == Fixnum) # store a number - settings._store( 'timeout', 5 ) + settings._store('timeout', 5) a = settings.timeout - assert( a.class == Fixnum ) - assert( a == 5 ) + assert(a.class == Fixnum) + assert(a == 5) # store a string - settings._store( 'timeout', '35' ) + settings._store('timeout', '35') a = settings.timeout - assert( a.class == Fixnum ) - assert( a == 35 ) + assert(a.class == Fixnum) + assert(a == 35) end |