forked from AkkomaGang/akkoma
Fix user_test
This commit is contained in:
parent
f384a9a256
commit
aaa9fed1ca
1 changed files with 2 additions and 2 deletions
|
@ -901,7 +901,7 @@ test "finds users, boosting ranks of friends and followers" do
|
|||
{:ok, follower} = User.follow(follower, u1)
|
||||
{:ok, u1} = User.follow(u1, friend)
|
||||
|
||||
assert [friend.id, follower.id, u2.id] == Enum.map(User.search("doe", false, u1), & &1.id)
|
||||
assert [friend.id, follower.id, u2.id] == Enum.map(User.search("doe", resolve: false, for_user: u1), & &1.id)
|
||||
end
|
||||
|
||||
test "finds a user whose name is nil" do
|
||||
|
@ -923,7 +923,7 @@ test "does not yield false-positive matches" do
|
|||
end
|
||||
|
||||
test "works with URIs" do
|
||||
results = User.search("http://mastodon.example.org/users/admin", true)
|
||||
results = User.search("http://mastodon.example.org/users/admin", resolve: true)
|
||||
result = results |> List.first()
|
||||
|
||||
user = User.get_by_ap_id("http://mastodon.example.org/users/admin")
|
||||
|
|
Loading…
Reference in a new issue