fix(test): Replace blank?

Which had apparently been provided
by a dependency, but not anymore.
This commit is contained in:
Raphael Reitzig 2023-06-27 22:52:16 +02:00 committed by Raphael
parent e27230839a
commit 9bc7a83802

View file

@ -38,7 +38,7 @@ end
And('the output contains {string}') do |content|
output = @response[:stdout]
.select { |line| !line.blank? }
.select { |line| !line.strip.empty? }
.map { |line| line.strip }
expect(output).to include(content)
end