aboutsummaryrefslogtreecommitdiff
path: root/test/pleroma/web
diff options
context:
space:
mode:
authorMaksim Pechnikov <parallel588@gmail.com>2020-09-25 09:39:49 +0300
committerMaksim Pechnikov <parallel588@gmail.com>2020-10-22 11:50:49 +0300
commit46b420aa602050d7b3bff33a6b51d54852b2adb3 (patch)
tree34ad4e03c385477979cbbf3343a0c0243a6f46a6 /test/pleroma/web
parentcf4f3937946eb0232be8bf8ddba08d365b4e17ee (diff)
downloadpleroma-46b420aa602050d7b3bff33a6b51d54852b2adb3.tar.gz
need_confirmed -> unconfirmed
Diffstat (limited to 'test/pleroma/web')
-rw-r--r--test/pleroma/web/admin_api/search_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pleroma/web/admin_api/search_test.exs b/test/pleroma/web/admin_api/search_test.exs
index 27ca396e6..82da86f7f 100644
--- a/test/pleroma/web/admin_api/search_test.exs
+++ b/test/pleroma/web/admin_api/search_test.exs
@@ -184,7 +184,7 @@ defmodule Pleroma.Web.AdminAPI.SearchTest do
insert(:user)
{:ok, _results, total} = Search.user()
- {:ok, [^unconfirmed], count} = Search.user(%{need_confirmed: true})
+ {:ok, [^unconfirmed], count} = Search.user(%{unconfirmed: true})
assert total == 3
assert count == 1
end