Fix fmt issues in test for 'include a post with a abbreviated dates'

This commit is contained in:
Parker Moore 2017-03-01 22:08:21 -05:00
parent 4085e29f80
commit ca87c99a3c
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ class TestGeneratedSite < JekyllUnitTest
end
should "include a post with a abbreviated dates" do
refute_nil -1, @site.posts.index { |post| post.relative_path == "_posts/2017-2-5-i-dont-like-zeroes.md" }
refute_nil @site.posts.index { |post|
post.relative_path == "_posts/2017-2-5-i-dont-like-zeroes.md"
}
assert_exist dest_dir("2017", "02", "05", "i-dont-like-zeroes.html")
end