Fix fmt errors.

This commit is contained in:
Parker Moore 2016-08-30 13:28:46 -07:00
parent 2b15b0b325
commit 5b21f8fda9
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 4 additions and 2 deletions

View File

@ -502,8 +502,10 @@ class TestSite < JekyllUnitTest
site = fixture_site({ "theme" => {} })
assert_nil site.theme
end
expected_msg = "Theme: value of 'theme' in config should be String to use gem-based themes, but got Hash\n"
assert output.end_with?(expected_msg), "Expected #{output.inspect} to end with #{expected_msg.inspect}"
expected_msg = "Theme: value of 'theme' in config should be String " \
"to use gem-based themes, but got Hash\n"
assert output.end_with?(expected_msg),
"Expected #{output.inspect} to end with #{expected_msg.inspect}"
end
should "set a theme if the config is a string" do