bootstraptest/runner.rb: first line in the source

* bootstraptest/runner.rb (pretty): remove empty line at the
  beginning only.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-10-11 13:21:30 +00:00
Родитель 446924cbb7
Коммит 269977b918
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -405,7 +405,7 @@ def flunk(message = '')
end
def pretty(src, desc, result)
src = src.sub(/\A.*\n/, '')
src = src.sub(/\A[\s\t]*\n/, '')
(/\n/ =~ src ? "\n#{adjust_indent(src)}" : src) + " #=> #{desc}"
end