diff options
Diffstat (limited to 't/test-custodian-util-bytemark.rb')
-rwxr-xr-x | t/test-custodian-util-bytemark.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-custodian-util-bytemark.rb b/t/test-custodian-util-bytemark.rb index 9bd775a..47fce9b 100755 --- a/t/test-custodian-util-bytemark.rb +++ b/t/test-custodian-util-bytemark.rb @@ -46,13 +46,13 @@ class TestBytemarkUtil < Test::Unit::TestCase # '127.0.0.1' => false, '192.168.1.1' => false, - '2a00:1450:400c:c00::93' => false, + '2a00:1450:400c:c00::93' => false } 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) |