diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-23 22:37:23 +0200 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-27 14:02:57 -0600 |
commit | 1213311562928551918495a69e4c6f87236f6a66 (patch) | |
tree | dc1274de8877beee411b9a72efccc66cd11603ab /spec/models/admin | |
parent | 3681f7dcce8f82d2a4377a051952159cd03919c0 (diff) |
port tootsuite#11639 to monsterfork: Add option to include reported statuses in warning e-mail
Diffstat (limited to 'spec/models/admin')
-rw-r--r-- | spec/models/admin/account_action_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/admin/account_action_spec.rb b/spec/models/admin/account_action_spec.rb index a3db60cfc..87fc28500 100644 --- a/spec/models/admin/account_action_spec.rb +++ b/spec/models/admin/account_action_spec.rb @@ -58,8 +58,8 @@ RSpec.describe Admin::AccountAction, type: :model do end.to change { Admin::ActionLog.count }.by 1 end - it 'calls queue_email!' do - expect(account_action).to receive(:queue_email!) + it 'calls process_email!' do + expect(account_action).to receive(:process_email!) subject end |