summaryrefslogtreecommitdiff
path: root/t/test-custodian-util-bytemark.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-util-bytemark.rb
parentedf0e675123e4869e2739d1bab0ed57b3b9f664c (diff)
Don't use parenthesis aroudn conditions in an if.
Diffstat (limited to 't/test-custodian-util-bytemark.rb')
-rwxr-xr-xt/test-custodian-util-bytemark.rb2
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 )