Skip to content

Commit bad32c5

Browse files
committed
Fix tests on Ruby 1.8.7
1 parent 1422a18 commit bad32c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/oauth2/client_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
end
8484

8585
it 'does not mutate the opts hash argument' do
86-
opts = { site: 'http://example.com/' }
86+
opts = {:site => 'http://example.com/'}
8787
opts2 = opts.dup
8888
OAuth2::Client.new 'abc', 'def', opts
8989
expect(opts).to eq(opts2)

0 commit comments

Comments
 (0)