diff options
author | lain <lain@soykaf.club> | 2020-07-23 11:08:29 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-07-23 11:08:29 +0000 |
commit | b2ba70eec437e81b8c1c2be3081858be38a73c61 (patch) | |
tree | 959532e6c41cb85e736d7b603b1f1b0fa1c9f13b /test | |
parent | 250e0369c72292a255b0fe078e5a2202c00fa4c7 (diff) | |
parent | ce243b107ffaf79fee0377998320d90c30dd77e0 (diff) | |
download | pleroma-b2ba70eec437e81b8c1c2be3081858be38a73c61.tar.gz pleroma-b2ba70eec437e81b8c1c2be3081858be38a73c61.zip |
Merge branch 'bugfix/mrf-reject-logging' into 'develop'
Fix #783: Make MRF reject log as info level instead of error
Closes #783
See merge request pleroma/pleroma!2758
Diffstat (limited to 'test')
-rw-r--r-- | test/web/activity_pub/transmogrifier_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/transmogrifier_test.exs b/test/web/activity_pub/transmogrifier_test.exs index 248b410c6..a18fdaac0 100644 --- a/test/web/activity_pub/transmogrifier_test.exs +++ b/test/web/activity_pub/transmogrifier_test.exs @@ -160,7 +160,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do assert capture_log(fn -> {:ok, _returned_activity} = Transmogrifier.handle_incoming(data) - end) =~ "[error] Couldn't fetch \"https://404.site/whatever\", error: nil" + end) =~ "[warn] Couldn't fetch \"https://404.site/whatever\", error: nil" end test "it works for incoming notices" do |