Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshingYou1 committed Nov 27, 2024
1 parent 2cdb9cf commit 0cb212c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/lib/form1010_ezr/service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def expect_personal_info_log(message)
context 'with pdf attachments' do
it 'increments StatsD and returns a success object', run_at: 'Wed, 17 Jul 2024 18:17:32 GMT' do
allow(StatsD).to receive(:increment)
expect(StatsD).to receive(:increment).with("api.1010ezr.submission_with_attachment")
expect(StatsD).to receive(:increment).with('api.1010ezr.submission_with_attachment')

VCR.use_cassette(
'form1010_ezr/authorized_submit_with_attachments',
Expand All @@ -472,7 +472,7 @@ def expect_personal_info_log(message)
context 'with a non-pdf attachment' do
it 'increments StatsD and returns a success object', run_at: 'Wed, 17 Jul 2024 18:17:34 GMT' do
allow(StatsD).to receive(:increment)
expect(StatsD).to receive(:increment).with("api.1010ezr.submission_with_attachment")
expect(StatsD).to receive(:increment).with('api.1010ezr.submission_with_attachment')

VCR.use_cassette(
'form1010_ezr/authorized_submit_with_non_pdf_attachment',
Expand Down

0 comments on commit 0cb212c

Please sign in to comment.