forked from AkkomaGang/akkoma
Fix some more tests.
This commit is contained in:
parent
79b3397c17
commit
9223038319
2 changed files with 5 additions and 3 deletions
|
@ -56,7 +56,9 @@ test "a note activity" do
|
|||
|
||||
test "contains mentions" do
|
||||
incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
|
||||
user = insert(:user, %{ap_id: "https://pleroma.soykaf.com/users/lain"})
|
||||
# a user with this ap id might be in the cache.
|
||||
recipient = "https://pleroma.soykaf.com/users/lain"
|
||||
user = User.get_cached_by_ap_id(recipient) || insert(:user, %{ap_id: recipient})
|
||||
|
||||
{:ok, [activity]} = OStatus.handle_incoming(incoming)
|
||||
|
||||
|
|
|
@ -30,8 +30,8 @@ test "A user" do
|
|||
User.follow(follower, user)
|
||||
User.follow(second_follower, user)
|
||||
User.follow(user, follower)
|
||||
|
||||
user = Repo.get!(User, user.id)
|
||||
{:ok, user} = User.update_follower_count(user)
|
||||
Cachex.set(:user_cache, "user_info:#{user.id}", User.user_info(Repo.get!(User, user.id)))
|
||||
|
||||
image = "https://placehold.it/48x48"
|
||||
|
||||
|
|
Loading…
Reference in a new issue