Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kayline committed Oct 25, 2024
1 parent b222184 commit e72a718
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@
form: '{}')
end
let!(:saved_claim4) do
SavedClaim::SupplementalClaim.create(guid: secondary_form_with_delete_date.appeal_submission.submitted_appeal_uuid,
form: '{}')
SavedClaim::SupplementalClaim
.create(guid: secondary_form_with_delete_date.appeal_submission.submitted_appeal_uuid, form: '{}')
end

let(:upload_response_4142_vbms) do
Expand Down Expand Up @@ -240,7 +240,8 @@
expect(service).to receive(:get_supplemental_claim_upload).with(uuid: secondary_form1.guid)
expect(service).to receive(:get_supplemental_claim_upload).with(uuid: secondary_form2.guid)
expect(service).to receive(:get_supplemental_claim_upload).with(uuid: secondary_form3.guid)
expect(service).not_to receive(:get_supplemental_claim_upload).with(uuid: secondary_form_with_delete_date.guid)
expect(service).not_to receive(:get_supplemental_claim_upload)
.with(uuid: secondary_form_with_delete_date.guid)
subject.new.perform
end

Expand Down Expand Up @@ -285,7 +286,8 @@
.with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', tags: ['status:vbms'])
.exactly(1).time
expect(StatsD).to have_received(:increment)
.with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', tags: ['status:processing'])
.with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status',
tags: ['status:processing'])
.exactly(1).time

expect(Rails.logger).to have_received(:info)
Expand Down

0 comments on commit e72a718

Please sign in to comment.