Skip to content

Commit 2591006

Browse files
committed
Workaround inspec tcp6 protocol detection bug
1 parent b1c02fa commit 2591006

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/openssh/inspec/openssh_spec.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@
1313

1414
describe port(22) do
1515
it { should be_listening }
16-
its("protocols") { should cmp %w[tcp tcp6] }
16+
its("protocols") { should include "tcp" }
17+
# https://github.com/inspec/inspec/issues/3209
18+
# its("protocols") { should include "tcp6" }
1719
end

0 commit comments

Comments
 (0)