diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-06 21:44:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 03:44:36 +0100 |
commit | ed570050c62115cfbcca8cfcd0de891b729f3e5c (patch) | |
tree | b899dd4b4daa7617c0f9fa236107d2fbe4aa7be7 /spec/models | |
parent | 6a71bb23c26577c3186a8730b663a37efd29ad1f (diff) |
Autofix Rails/EagerEvaluationLogMessage (#23429)
* Autofix Rails/EagerEvaluationLogMessage * Update spec for debug block syntax
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/concerns/remotable_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/models/concerns/remotable_spec.rb b/spec/models/concerns/remotable_spec.rb index 9cc849ded..ca2d65d2d 100644 --- a/spec/models/concerns/remotable_spec.rb +++ b/spec/models/concerns/remotable_spec.rb @@ -194,7 +194,9 @@ RSpec.describe Remotable do let(:error_class) { error_class } it 'calls Rails.logger.debug' do - expect(Rails.logger).to receive(:debug).with(/^Error fetching remote #{hoge}: /) + expect(Rails.logger).to receive(:debug) do |&block| + expect(block.call).to match(/^Error fetching remote #{hoge}: /) + end foo.hoge_remote_url = url end end |