summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2019-10-18 02:52:08 +0000
committerAriadne Conill <ariadne@dereferenced.org>2019-10-18 14:50:10 +0000
commit700c654208b74269fa5da453ffd8f5cc2724086d (patch)
treed1bd432c46a89234af8cb95d383a3ada74c194a4
parent6f110fc04ca31bf571fb80a2a852ab60ddd496ff (diff)
downloadpleroma-700c654208b74269fa5da453ffd8f5cc2724086d.tar.gz
pleroma-700c654208b74269fa5da453ffd8f5cc2724086d.zip
tests: fix relay tests
-rw-r--r--test/web/activity_pub/relay_test.exs8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/web/activity_pub/relay_test.exs b/test/web/activity_pub/relay_test.exs
index 0f7556538..4a0a03944 100644
--- a/test/web/activity_pub/relay_test.exs
+++ b/test/web/activity_pub/relay_test.exs
@@ -22,8 +22,8 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do
describe "follow/1" do
test "returns errors when user not found" do
assert capture_log(fn ->
- assert Relay.follow("test-ap-id") == {:error, "Could not fetch by AP id"}
- end) =~ "Could not fetch by AP id"
+ {:error, _} = Relay.follow("test-ap-id")
+ end) =~ "Could not decode user at fetch"
end
test "returns activity" do
@@ -41,8 +41,8 @@ defmodule Pleroma.Web.ActivityPub.RelayTest do
describe "unfollow/1" do
test "returns errors when user not found" do
assert capture_log(fn ->
- assert Relay.unfollow("test-ap-id") == {:error, "Could not fetch by AP id"}
- end) =~ "Could not fetch by AP id"
+ {:error, _} = Relay.unfollow("test-ap-id")
+ end) =~ "Could not decode user at fetch"
end
test "returns activity" do