Skip to content

Commit

Permalink
Fixed uri warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tomprats committed Jan 5, 2024
1 parent 1f4a53a commit c42dd14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 1 addition & 9 deletions spec/lib/http/retriable/delay_calculator_spec.rb
Expand Up @@ -7,15 +7,7 @@
version: "1.1",
headers: {},
body: "Hello world!",
uri: "http://example.com/",
request: request
)
end

let(:request) do
HTTP::Request.new(
verb: :get,
uri: "http://example.com"
request: HTTP::Request.new(verb: :get, uri: "http://example.com")
)
end

Expand Down
2 changes: 0 additions & 2 deletions spec/lib/http/retriable/performer_spec.rb
Expand Up @@ -11,7 +11,6 @@
version: "1.1",
headers: {},
body: "Hello world!",
uri: "http://example.com/",
request: request
)
end
Expand Down Expand Up @@ -83,7 +82,6 @@ def response(**options)
version: "1.1",
headers: {},
body: "Hello world!",
uri: "http://example.com/",
request: request
}.merge(options)
)
Expand Down

0 comments on commit c42dd14

Please sign in to comment.