[rubygems/rubygems] These method should be returning a string

https://github.com/rubygems/rubygems/commit/dc391f4d87
This commit is contained in:
David Rodríguez 2021-08-05 16:53:51 +02:00 коммит произвёл git
Родитель d123919595
Коммит d49ee9e2c3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -220,7 +220,7 @@ module Spec
end
def all_commands_output
return [] if command_executions.empty?
return "" if command_executions.empty?
"\n\nCommands:\n#{command_executions.map(&:to_s_verbose).join("\n\n")}"
end