Fix fmt errors.
This commit is contained in:
parent
2b15b0b325
commit
5b21f8fda9
|
@ -502,8 +502,10 @@ class TestSite < JekyllUnitTest
|
||||||
site = fixture_site({ "theme" => {} })
|
site = fixture_site({ "theme" => {} })
|
||||||
assert_nil site.theme
|
assert_nil site.theme
|
||||||
end
|
end
|
||||||
expected_msg = "Theme: value of 'theme' in config should be String to use gem-based themes, but got Hash\n"
|
expected_msg = "Theme: value of 'theme' in config should be String " \
|
||||||
assert output.end_with?(expected_msg), "Expected #{output.inspect} to end with #{expected_msg.inspect}"
|
"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
|
end
|
||||||
|
|
||||||
should "set a theme if the config is a string" do
|
should "set a theme if the config is a string" do
|
||||||
|
|
Loading…
Reference in New Issue