mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Merge pull request #721 from bfad/fix-test-for-ruby-3
Fix method call in spec for Ruby 3.0.0
This commit is contained in:
commit
8ceb806b09
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ RSpec.describe HTTParty::Request::Body do
|
|||
describe '#call' do
|
||||
let(:options) { {} }
|
||||
|
||||
subject { described_class.new(params, options).call }
|
||||
subject { described_class.new(params, **options).call }
|
||||
|
||||
context 'when params is string' do
|
||||
let(:params) { 'name=Bob%20Jones' }
|
||||
|
|
Loading…
Reference in a new issue