ipfs: replacing single quotes with double quotes
This commit is contained in:
parent
5e097eb91d
commit
21d9091f5e
@ -100,7 +100,7 @@ defmodule Pleroma.Uploaders.IPFSTest do
|
|||||||
test "returns error if JSON decode fails", %{file_upload: file_upload} do
|
test "returns error if JSON decode fails", %{file_upload: file_upload} do
|
||||||
with_mock Pleroma.HTTP, [],
|
with_mock Pleroma.HTTP, [],
|
||||||
post: fn "http://localhost:5001/api/v0/add", mp, [], params: ["cid-version": "1"] ->
|
post: fn "http://localhost:5001/api/v0/add", mp, [], params: ["cid-version": "1"] ->
|
||||||
{:ok, %Tesla.Env{status: 200, body: 'invalid'}}
|
{:ok, %Tesla.Env{status: 200, body: "invalid"}}
|
||||||
end do
|
end do
|
||||||
assert capture_log(fn ->
|
assert capture_log(fn ->
|
||||||
assert IPFS.put_file(file_upload) == {:error, "JSON decode failed"}
|
assert IPFS.put_file(file_upload) == {:error, "JSON decode failed"}
|
||||||
@ -112,7 +112,7 @@ defmodule Pleroma.Uploaders.IPFSTest do
|
|||||||
test "returns error if JSON body doesn't contain Hash key", %{file_upload: file_upload} do
|
test "returns error if JSON body doesn't contain Hash key", %{file_upload: file_upload} do
|
||||||
with_mock Pleroma.HTTP, [],
|
with_mock Pleroma.HTTP, [],
|
||||||
post: fn "http://localhost:5001/api/v0/add", mp, [], params: ["cid-version": "1"] ->
|
post: fn "http://localhost:5001/api/v0/add", mp, [], params: ["cid-version": "1"] ->
|
||||||
{:ok, %Tesla.Env{status: 200, body: '{"key": "value"}'}}
|
{:ok, %Tesla.Env{status: 200, body: "{\"key\": \"value\"}"}}
|
||||||
end do
|
end do
|
||||||
assert IPFS.put_file(file_upload) == {:error, "JSON doesn't contain Hash key"}
|
assert IPFS.put_file(file_upload) == {:error, "JSON doesn't contain Hash key"}
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user