1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/unit.rb: newline after message

* test/lib/test/unit.rb (deal): print a newline after an error
  message for unknown command not to overwritten by next messages.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-07-04 08:00:41 +00:00
parent 27cafcfc89
commit 535ee0197f

View file

@ -576,7 +576,7 @@ module Test
after_worker_down worker
end
else
print "unknown command: #{cmd.dump}"
print "unknown command: #{cmd.dump}\n"
end
return false
end