summaryrefslogtreecommitdiff
path: root/t/test-custodian-util-bytemark.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:15 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:19:15 +0000
commitaf2ee063abea8235a8cbd1448533e4f4fbc0d0af (patch)
tree969e448e2d5995f7e838a68ef1d25d54df9b8d29 /t/test-custodian-util-bytemark.rb
parentbb2ec1f07af747c69f2fd1e5b70c41b35fb069e6 (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-xt/test-custodian-util-bytemark.rb10
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,
}