Fix missing trailing comma to alleviate fmt errors

Offenses:

test/test_static_file.rb:151:9: C: [Corrected] Style/TrailingCommaInLiteral: Put a comma after the last item of a multiline hash.
        "collection"    => nil
        ^^^^^^^^^^^^^^^^^^^^^^
This commit is contained in:
Parker Moore 2017-02-10 21:16:25 -05:00
parent ec234a4ef8
commit 23808c2ae6
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class TestStaticFile < JekyllUnitTest
"extname" => ".txt", "extname" => ".txt",
"modified_time" => @static_file.modified_time, "modified_time" => @static_file.modified_time,
"path" => "/static_file.txt", "path" => "/static_file.txt",
"collection" => nil "collection" => nil,
} }
assert_equal expected, @static_file.to_liquid.to_h assert_equal expected, @static_file.to_liquid.to_h
end end