summaryrefslogtreecommitdiff
path: root/t/test-custodian-util-ping.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:15:06 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:15:06 +0000
commite950dc3c5163f1305deffede93e77209e90ecacb (patch)
treee580fe21c6cd560ffcbb1452ccd618dc74faeefd /t/test-custodian-util-ping.rb
parent3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b (diff)
Do not terminate expressions with ";".
Ruby is not Perl, much as I sometimes wish it were.
Diffstat (limited to 't/test-custodian-util-ping.rb')
-rwxr-xr-xt/test-custodian-util-ping.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-custodian-util-ping.rb b/t/test-custodian-util-ping.rb
index 3dd363a..bf8ac43 100755
--- a/t/test-custodian-util-ping.rb
+++ b/t/test-custodian-util-ping.rb
@@ -64,7 +64,7 @@ class TestPingUtil < Test::Unit::TestCase
#
def test_lookup_ipv4
- helper = Custodian::Util::Ping.new( "ipv4.steve.org.uk" );
+ helper = Custodian::Util::Ping.new( "ipv4.steve.org.uk" )
assert( helper.is_ipv4? )
assert( ! helper.is_ipv6? )
@@ -76,7 +76,7 @@ class TestPingUtil < Test::Unit::TestCase
#
def test_lookup_ipv6
- helper = Custodian::Util::Ping.new( "ipv6.steve.org.uk" );
+ helper = Custodian::Util::Ping.new( "ipv6.steve.org.uk" )
assert( helper.is_ipv6? )
assert( ! helper.is_ipv4? )
end