Skip to content

Commit 82bba28

Browse files
committed
lint
1 parent 2d377dc commit 82bba28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/rspec/rails/matchers/active_job_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ def perform; raise StandardError; end
543543

544544
it "raises RSpec::Expectations::ExpectationNotMetError when Proc passed to expect" do
545545
expect {
546-
expect{ heavy_lifting_job }.to have_been_enqueued
546+
expect { heavy_lifting_job }.to have_been_enqueued
547547
}.to raise_error(RSpec::Expectations::ExpectationNotMetError)
548548
end
549549

@@ -869,7 +869,7 @@ def perform; raise StandardError; end
869869

870870
it "raises RSpec::Expectations::ExpectationNotMetError when Proc passed to expect" do
871871
expect {
872-
expect{ heavy_lifting_job }.to have_been_performed
872+
expect { heavy_lifting_job }.to have_been_performed
873873
}.to raise_error(RSpec::Expectations::ExpectationNotMetError)
874874
end
875875

0 commit comments

Comments
 (0)