diff options
| author | William Pitcock <nenolod@dereferenced.org> | 2019-05-22 03:58:15 +0000 |
|---|---|---|
| committer | William Pitcock <nenolod@dereferenced.org> | 2019-05-22 03:58:15 +0000 |
| commit | 045803346d70c1f9c6ea770485904fd7cc52969a (patch) | |
| tree | 271e169e2fe978e43631f84bce0058618160f602 /test/web/activity_pub/activity_pub_test.exs | |
| parent | be6b57193a99a32134546efb667391eda4d4acdf (diff) | |
| download | pleroma-045803346d70c1f9c6ea770485904fd7cc52969a.tar.gz pleroma-045803346d70c1f9c6ea770485904fd7cc52969a.zip | |
move key generation functions into Pleroma.Keys module
Diffstat (limited to 'test/web/activity_pub/activity_pub_test.exs')
| -rw-r--r-- | test/web/activity_pub/activity_pub_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs index c18e0ab5f..f743f380b 100644 --- a/test/web/activity_pub/activity_pub_test.exs +++ b/test/web/activity_pub/activity_pub_test.exs @@ -1005,7 +1005,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do describe "update" do test "it creates an update activity with the new user data" do user = insert(:user) - {:ok, user} = Pleroma.Web.WebFinger.ensure_keys_present(user) + {:ok, user} = User.ensure_keys_present(user) user_data = Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user}) {:ok, update} = |
