We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aed4dbe commit ebe5f17Copy full SHA for ebe5f17
tests/serverspec/spec/shared/hhvm/listening.rb
@@ -1,7 +1,7 @@
1
shared_examples 'hhvm::listening::public' do
2
describe port(9000) do
3
it "hhvm should be listening", :retry => 20, :retry_wait => 3 do
4
- should be_listening.with('tcp6')
+ should be_listening.with('tcp')
5
end
6
7
@@ -15,7 +15,7 @@
15
16
17
it "hhvm should be listening local", :retry => 20, :retry_wait => 3 do
18
- should be_listening.on('::1').with('tcp6')
+ should be_listening.on('::1').with('tcp')
19
20
21
0 commit comments