From 23808c2ae64638f79e1cb2b51936827e98f70880 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Fri, 10 Feb 2017 21:16:25 -0500 Subject: [PATCH] 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 ^^^^^^^^^^^^^^^^^^^^^^ --- test/test_static_file.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_static_file.rb b/test/test_static_file.rb index b2299ae2..1603420a 100644 --- a/test/test_static_file.rb +++ b/test/test_static_file.rb @@ -148,7 +148,7 @@ class TestStaticFile < JekyllUnitTest "extname" => ".txt", "modified_time" => @static_file.modified_time, "path" => "/static_file.txt", - "collection" => nil + "collection" => nil, } assert_equal expected, @static_file.to_liquid.to_h end