diff options
author | Lain Soykaf <lain@lain.com> | 2024-05-23 18:55:16 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2024-05-23 18:55:16 +0400 |
commit | a566ad56e1434715d00067b1e49be66b6787f5ba (patch) | |
tree | d13e22f8ee821815189406559f6ed9bd6cafcf5f /test | |
parent | 94e4f215896dc7976a54fd146daf3e286602925a (diff) | |
download | pleroma-a566ad56e1434715d00067b1e49be66b6787f5ba.tar.gz pleroma-a566ad56e1434715d00067b1e49be66b6787f5ba.zip |
QdrantSearch: Fix actor / author restriction
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/search/qdrant_search_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pleroma/search/qdrant_search_test.exs b/test/pleroma/search/qdrant_search_test.exs index 371074dcf..46485392e 100644 --- a/test/pleroma/search/qdrant_search_test.exs +++ b/test/pleroma/search/qdrant_search_test.exs @@ -98,7 +98,7 @@ defmodule Pleroma.Search.QdrantSearchTest do end) results = - QdrantSearch.search(nil, "guys i just don't wanna leave the swamp", %{actor: user}) + QdrantSearch.search(nil, "guys i just don't wanna leave the swamp", %{author: user}) assert results == [activity] end |