diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:15 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:15 +0000 |
commit | af2ee063abea8235a8cbd1448533e4f4fbc0d0af (patch) | |
tree | 969e448e2d5995f7e838a68ef1d25d54df9b8d29 /t/test-custodian-util-bytemark.rb | |
parent | bb2ec1f07af747c69f2fd1e5b70c41b35fb069e6 (diff) |
Prefer single-quotes when you don't need interpolation.
So "foo" is less good than 'foo'.
Diffstat (limited to 't/test-custodian-util-bytemark.rb')
-rwxr-xr-x | t/test-custodian-util-bytemark.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/test-custodian-util-bytemark.rb b/t/test-custodian-util-bytemark.rb index 9296dcb..30bb480 100755 --- a/t/test-custodian-util-bytemark.rb +++ b/t/test-custodian-util-bytemark.rb @@ -38,15 +38,15 @@ class TestBytemarkUtil < Test::Unit::TestCase # # Hosts inside the Bytemark network # - "80.68.85.48" => true, - "2001:41c8:125:46::10" => true, + '80.68.85.48' => true, + '2001:41c8:125:46::10' => true, # # Hosts outside the Bytemark network # - "127.0.0.1" => false, - "192.168.1.1" => false, - "2a00:1450:400c:c00::93" => false, + '127.0.0.1' => false, + '192.168.1.1' => false, + '2a00:1450:400c:c00::93' => false, } |