Skip to content

Commit

Permalink
rubocop -a
Browse files Browse the repository at this point in the history
Now with new Ruby settings
  • Loading branch information
dominicsayers committed Jan 27, 2024
1 parent 74626e1 commit 1c389aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/monkey_patches/uri_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

it 'responds to the canonicalize method' do
expect(URI.parse(url)).to respond_to(:canonicalize)
expect(URI::HTTP.build(host: host)).to respond_to(:canonicalize)
expect(URI::HTTPS.build(host: host)).to respond_to(:canonicalize)
expect(URI::HTTP.build(host:)).to respond_to(:canonicalize)
expect(URI::HTTPS.build(host:)).to respond_to(:canonicalize)
end

it 'is the expected class' do
Expand Down

0 comments on commit 1c389aa

Please sign in to comment.