diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-19 20:33:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 02:33:27 +0100 |
commit | 65ba0d92ef78f82a3cf5bf04f13b3d7393da015d (patch) | |
tree | 7f7d4987d1a2c4ef545ba04305af67ebb5dba203 /spec/models/user_spec.rb | |
parent | a2fdb388eb412f3f90ec48bc990c7c2c24b8c072 (diff) |
Enable Rubocop RSpec/NotToNot (#23723)
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r-- | spec/models/user_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index dde1503c0..c2f7e99ac 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -159,7 +159,7 @@ RSpec.describe User, type: :model do it 'does not trigger the account.approved Web Hook' do subject - expect(TriggerWebhookWorker).not_to have_received(:perform_async).with('account.approved', 'Account', user.account_id) + expect(TriggerWebhookWorker).to_not have_received(:perform_async).with('account.approved', 'Account', user.account_id) end end @@ -270,7 +270,7 @@ RSpec.describe User, type: :model do it 'does not trigger the account.approved Web Hook' do subject - expect(TriggerWebhookWorker).not_to have_received(:perform_async).with('account.approved', 'Account', user.account_id) + expect(TriggerWebhookWorker).to_not have_received(:perform_async).with('account.approved', 'Account', user.account_id) end end end |