Fix user_test
authorMaxim Filippov <colixer@gmail.com>
Fri, 1 Mar 2019 17:58:47 +0000 (20:58 +0300)
committerMaxim Filippov <colixer@gmail.com>
Fri, 1 Mar 2019 17:58:47 +0000 (20:58 +0300)
test/user_test.exs

index 0b1c39ecf82d1b83f25f488155efbcb04bb3e390..27137fc35fe38d2f6c772e85bf3e288fa0c99961 100644 (file)
@@ -901,7 +901,7 @@ defmodule Pleroma.UserTest 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 @@ defmodule Pleroma.UserTest 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")