Skip to content

Commit e24c1bc

Browse files
committed
Remove 2s timeout.
1 parent 822f41d commit e24c1bc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

spec/async/http/body_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
end
9595
end
9696

97-
RSpec.describe Async::HTTP::Protocol::HTTP1, timeout: 2 do
97+
RSpec.describe Async::HTTP::Protocol::HTTP1 do
9898
include_context Async::RSpec::Reactor
9999

100100
let(:endpoint) {Async::HTTP::Endpoint.parse('http://127.0.0.1:9296', reuse_port: true)}
@@ -104,7 +104,7 @@
104104
it_should_behave_like Async::HTTP::Body
105105
end
106106

107-
RSpec.describe Async::HTTP::Protocol::HTTPS, timeout: 2 do
107+
RSpec.describe Async::HTTP::Protocol::HTTPS do
108108
include_context Async::RSpec::Reactor
109109
let(:authority) {Localhost::Authority.new}
110110

spec/async/http/protocol/http10_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
require 'async/http/protocol/http10'
77
require_relative 'shared_examples'
88

9-
RSpec.describe Async::HTTP::Protocol::HTTP10, timeout: 2 do
9+
RSpec.describe Async::HTTP::Protocol::HTTP10 do
1010
it_behaves_like Async::HTTP::Protocol
1111
end

spec/async/http/protocol/http11_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
require 'async/http/protocol/http11'
88
require_relative 'shared_examples'
99

10-
RSpec.describe Async::HTTP::Protocol::HTTP11, timeout: 2 do
10+
RSpec.describe Async::HTTP::Protocol::HTTP11 do
1111
it_behaves_like Async::HTTP::Protocol
1212

1313
context 'head request' do

spec/async/http/protocol/http2_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require 'async/http/protocol/http2'
77
require_relative 'shared_examples'
88

9-
RSpec.describe Async::HTTP::Protocol::HTTP2, timeout: 2 do
9+
RSpec.describe Async::HTTP::Protocol::HTTP2 do
1010
it_behaves_like Async::HTTP::Protocol
1111

1212
context 'bad requests' do

0 commit comments

Comments
 (0)