mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Convert pathname to string.
This commit is contained in:
parent
e92d0c6d89
commit
a48790f05c
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module HTTParty
|
||||||
if mode
|
if mode
|
||||||
ca_path = path.join(ca_basename)
|
ca_path = path.join(ca_basename)
|
||||||
raise ArgumentError.new("#{ca_path} does not exist") unless ca_path.exist?
|
raise ArgumentError.new("#{ca_path} does not exist") unless ca_path.exist?
|
||||||
options[mode] = ca_path
|
options[mode] = ca_path.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
test_server = SSLTestServer.new({
|
test_server = SSLTestServer.new({
|
||||||
|
|
Loading…
Add table
Reference in a new issue