From ba8783190b5ebe3334165a3094f52b530fd2df6c Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Tue, 6 May 2014 13:16:41 -0400 Subject: [PATCH] Fix test for new command's output. --- test/test_new_command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_new_command.rb b/test/test_new_command.rb index 135cfa6e..bc58bd2e 100644 --- a/test/test_new_command.rb +++ b/test/test_new_command.rb @@ -31,7 +31,7 @@ class TestNewCommand < Test::Unit::TestCase should 'display a success message' do output = capture_stdout { Jekyll::Commands::New.process(@args) } - success_message = "New jekyll site installed in #{@full_path}.\n" + success_message = "New jekyll site installed in #{@full_path}. \n" assert_equal success_message, output end