Fix test for new command's output.

This commit is contained in:
Parker Moore 2014-05-06 13:16:41 -04:00
parent 4c55c77c04
commit ba8783190b
1 changed files with 1 additions and 1 deletions

View File

@ -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