diff options
author | lambda <lain@soykaf.club> | 2019-04-12 10:41:09 +0000 |
---|---|---|
committer | lambda <lain@soykaf.club> | 2019-04-12 10:41:09 +0000 |
commit | 184ae60b217f4e3a79aad538717d1cf35f10291a (patch) | |
tree | ce7633ae3f388e1cf7618d39512a196ec59c93f3 /test/web/twitter_api/twitter_api_test.exs | |
parent | 0a09692c7decdcaa8c15e5f8eaf10d9e7d16a5e5 (diff) | |
parent | 9c1b36856b97a7f86e60ad23ef374449c1910c7a (diff) | |
download | pleroma-184ae60b217f4e3a79aad538717d1cf35f10291a.tar.gz |
Merge branch 'bugfix/pleroma-email-naming' into 'develop'
Make the filename and module name of Pleroma.Emails.* orthogonal
See merge request pleroma/pleroma!1029
Diffstat (limited to 'test/web/twitter_api/twitter_api_test.exs')
-rw-r--r-- | test/web/twitter_api/twitter_api_test.exs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/web/twitter_api/twitter_api_test.exs b/test/web/twitter_api/twitter_api_test.exs index a4540e651..6d43bd13a 100644 --- a/test/web/twitter_api/twitter_api_test.exs +++ b/test/web/twitter_api/twitter_api_test.exs @@ -325,7 +325,9 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do assert user.info.confirmation_pending - Swoosh.TestAssertions.assert_email_sent(Pleroma.UserEmail.account_confirmation_email(user)) + Swoosh.TestAssertions.assert_email_sent( + Pleroma.Emails.UserEmail.account_confirmation_email(user) + ) end test "it registers a new user and parses mentions in the bio" do |