diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:21:36 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:21:36 +0000 |
commit | 0c2d64d6daf9a9a901a3b67730680e3e97c60f8d (patch) | |
tree | 623a1932c32dcf6cbac9254334690db82ac3816e /t/test-custodian-parser.rb | |
parent | 6d95fd2e13f23037bbae89b5627caf53aa346e73 (diff) |
Whitespace fixups.
These were all identified and suggested by rubocop.
Diffstat (limited to 't/test-custodian-parser.rb')
-rwxr-xr-x | t/test-custodian-parser.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/t/test-custodian-parser.rb b/t/test-custodian-parser.rb index 514f2a4..6d612b1 100755 --- a/t/test-custodian-parser.rb +++ b/t/test-custodian-parser.rb @@ -109,7 +109,7 @@ class TestCustodianParser < Test::Unit::TestCase # parser = Custodian::Parser.new # 3.a. Comment lines return nil. - str =<<EOF + str = <<EOF # This is a comment # This is also a fine comment EOF @@ -139,7 +139,7 @@ EOF # # Input text # - text =<<EOF + text = <<EOF FOO is kvm1.vm.bytemark.co.uk. TEST is kvm2.vm.bytemark.co.uk. EOF @@ -154,7 +154,7 @@ EOF # We should now have two macros. # macros = parser.macros - assert(! macros.empty?) + assert(!macros.empty?) assert(macros.size == 2) end @@ -185,7 +185,7 @@ EOF # We should now have two macros. # macros = parser.macros - assert(! macros.empty?) + assert(!macros.empty?) assert(macros.size == 2) end @@ -218,7 +218,7 @@ EOF # We should now have one macro. # macros = parser.macros - assert(! macros.empty?) + assert(!macros.empty?) assert(macros.size == 1) end @@ -308,7 +308,7 @@ EOF if follow assert(obj[0].follow_redirects?) else - assert(! obj[0].follow_redirects?) + assert(!obj[0].follow_redirects?) end end end @@ -347,7 +347,7 @@ EOF if cb assert(obj[0].cache_busting?) else - assert(! obj[0].cache_busting?) + assert(!obj[0].cache_busting?) end end end |