diff options
author | eal <eal@waifu.club> | 2017-11-20 09:26:31 +0200 |
---|---|---|
committer | eal <eal@waifu.club> | 2017-11-20 09:26:31 +0200 |
commit | 8d4e7b32c9adc2b16eaec93f4e6d754a2ace45b3 (patch) | |
tree | 7555b7cce44d0d98adf9999a8ac92c63b1c6ccb2 | |
parent | bd921ca5d7830efc9dde68b763412fdc03725adc (diff) | |
download | pleroma-8d4e7b32c9adc2b16eaec93f4e6d754a2ace45b3.tar.gz |
Ensure correct state in self-unfollow.
-rw-r--r-- | test/user_test.exs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/user_test.exs b/test/user_test.exs index 8ec23c751..31c5962e2 100644 --- a/test/user_test.exs +++ b/test/user_test.exs @@ -71,6 +71,7 @@ defmodule Pleroma.UserTest do {:error, _} = User.unfollow(user, user) + user = Repo.get(User, user.id) assert user.following == [user.ap_id] end |