diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-09-25 09:39:49 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-10-22 11:50:49 +0300 |
commit | 46b420aa602050d7b3bff33a6b51d54852b2adb3 (patch) | |
tree | 34ad4e03c385477979cbbf3343a0c0243a6f46a6 /test/pleroma/web/admin_api | |
parent | cf4f3937946eb0232be8bf8ddba08d365b4e17ee (diff) | |
download | pleroma-46b420aa602050d7b3bff33a6b51d54852b2adb3.tar.gz |
need_confirmed -> unconfirmed
Diffstat (limited to 'test/pleroma/web/admin_api')
-rw-r--r-- | test/pleroma/web/admin_api/search_test.exs | 2 |
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 |