From 5b21f8fda9357ddf42b665dda5bf38e657b043b4 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Tue, 30 Aug 2016 13:28:46 -0700 Subject: [PATCH] Fix fmt errors. --- test/test_site.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test_site.rb b/test/test_site.rb index 615f8a69..57b06871 100644 --- a/test/test_site.rb +++ b/test/test_site.rb @@ -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