diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:10:32 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:10:32 +0000 |
commit | 1ce0906b3480702085d4596dbb4758c115ab298f (patch) | |
tree | 695cd365c2ff73904328a049f3b9cfcc5a0a1abd /t/test-custodian-util-bytemark.rb | |
parent | 891b720013f06f092f6be82adad95e5551c696b6 (diff) |
Don't use parenthesis aroudn conditions in an if.
Diffstat (limited to 't/test-custodian-util-bytemark.rb')
-rwxr-xr-x | t/test-custodian-util-bytemark.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-custodian-util-bytemark.rb b/t/test-custodian-util-bytemark.rb index 764babc..9296dcb 100755 --- a/t/test-custodian-util-bytemark.rb +++ b/t/test-custodian-util-bytemark.rb @@ -52,7 +52,7 @@ class TestBytemarkUtil < Test::Unit::TestCase to_test.each do |name,inside| - if ( inside ) + if inside assert( Custodian::Util::Bytemark.inside?( name ) == true ) else assert( Custodian::Util::Bytemark.inside?( name ) == false ) |