mirror of
https://github.com/ethauvin/sdkman-for-fish.git
synced 2025-04-25 05:17:11 -07:00
fix(test): Replace blank?
Which had apparently been provided by a dependency, but not anymore.
This commit is contained in:
parent
e27230839a
commit
9bc7a83802
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ end
|
||||||
|
|
||||||
And('the output contains {string}') do |content|
|
And('the output contains {string}') do |content|
|
||||||
output = @response[:stdout]
|
output = @response[:stdout]
|
||||||
.select { |line| !line.blank? }
|
.select { |line| !line.strip.empty? }
|
||||||
.map { |line| line.strip }
|
.map { |line| line.strip }
|
||||||
expect(output).to include(content)
|
expect(output).to include(content)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue