diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2018-12-19 16:27:16 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2018-12-19 16:27:16 +0300 |
commit | 59fc5d15dfde0120fb10ec14631ad1115a6087a9 (patch) | |
tree | e982c48b13e424246d19319ff7f9278d4f0b239a /test/web/oauth/oauth_controller_test.exs | |
parent | 468d472d2b703c3f2ffa691c7afc65cae31ee25a (diff) | |
download | pleroma-59fc5d15dfde0120fb10ec14631ad1115a6087a9.tar.gz pleroma-59fc5d15dfde0120fb10ec14631ad1115a6087a9.zip |
[#114] User.Info: renamed `confirmation_update` to `confirmation_change`.
Diffstat (limited to 'test/web/oauth/oauth_controller_test.exs')
-rw-r--r-- | test/web/oauth/oauth_controller_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/oauth/oauth_controller_test.exs b/test/web/oauth/oauth_controller_test.exs index 55b471d8a..26505bab7 100644 --- a/test/web/oauth/oauth_controller_test.exs +++ b/test/web/oauth/oauth_controller_test.exs @@ -116,7 +116,7 @@ defmodule Pleroma.Web.OAuth.OAuthControllerTest do test "rejects token exchange for valid credentials belonging to unconfirmed user" do password = "testpassword" user = insert(:user, password_hash: Comeonin.Pbkdf2.hashpwsalt(password)) - info_change = Pleroma.User.Info.confirmation_update(user.info, :unconfirmed) + info_change = Pleroma.User.Info.confirmation_change(user.info, :unconfirmed) {:ok, user} = user |