Skip to content

Commit be20d8e

Browse files
committed
tests: fix macOS tests
1 parent c9d98cc commit be20d8e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Library/Homebrew/extend/os/mac/bundle/skipper.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ def linux_only_entry?(entry)
1515
def skip?(entry, silent: false)
1616
if linux_only_entry?(entry)
1717
unless silent
18-
$stdout.puts Formatter.warning "Skipping #{entry.type} #{entry.name} (unsupported on macOS)"
18+
Kernel.puts Formatter.warning "Skipping #{entry.type} #{entry.name} (unsupported on macOS)"
1919
end
20-
2120
true
2221
else
23-
super(entry)
22+
super
2423
end
2524
end
2625
end

0 commit comments

Comments
 (0)