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 | fea454753efc4a673751131960c394254555d34a (patch) | |
tree | 47732a1c331c236f8f082dc4f6f5a6c6d6dab058 /t/test-custodian-util-bytemark.rb | |
parent | edf0e675123e4869e2739d1bab0ed57b3b9f664c (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 ) |