diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-20 00:14:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 06:14:50 +0100 |
commit | 5116347eb7cfd0a09f55efbd84f8d3fa11d4d6ba (patch) | |
tree | 02fd0ac43ec43ccb974e4e370f6aeedf223b7d95 /spec/controllers/admin/reports | |
parent | bf785df9fe044f2f13bfb93e6860a74084d8eb8a (diff) |
Autofix Rubocop RSpec/BeEq (#23740)
Diffstat (limited to 'spec/controllers/admin/reports')
-rw-r--r-- | spec/controllers/admin/reports/actions_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/admin/reports/actions_controller_spec.rb b/spec/controllers/admin/reports/actions_controller_spec.rb index db3a1d311..20f85680f 100644 --- a/spec/controllers/admin/reports/actions_controller_spec.rb +++ b/spec/controllers/admin/reports/actions_controller_spec.rb @@ -116,7 +116,7 @@ describe Admin::Reports::ActionsController do it 'marks the non-deleted as sensitive' do subject - expect(media_attached_status.reload.sensitive).to eq true + expect(media_attached_status.reload.sensitive).to be true end end end |