Skip to content

Commit

Permalink
remove unnecessary run_at
Browse files Browse the repository at this point in the history
  • Loading branch information
coope93 committed Mar 3, 2025
1 parent 844efcb commit 80bba6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/requests/v0/health_care_applications_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def self.expect_async_submit
FileUtils.rm_f(response_pdf)
end

it 'returns a completed PDF', run_at: '2017-07-25 00:00:00 -0400' do
it 'returns a completed PDF' do
expect(HealthCareApplication).to receive(:new)
.with(hash_including('form' => form_data))
.and_return(health_care_application)
Expand Down Expand Up @@ -776,7 +776,7 @@ def self.expect_async_submit
).to be(false)
end

it 'ensures the tmp file is deleted when send_data fails', run_at: '2017-07-25 00:00:00 -0400' do
it 'ensures the tmp file is deleted when send_data fails' do
expect(HealthCareApplication).to receive(:new)
.with(hash_including('form' => form_data))
.and_return(health_care_application)
Expand All @@ -794,7 +794,7 @@ def self.expect_async_submit
).to be(false)
end

it 'ensures the tmp file is deleted when fill_form fails', run_at: '2017-07-25 00:00:00 -0400' do
it 'ensures the tmp file is deleted when fill_form fails' do
expect(HealthCareApplication).to receive(:new)
.with(hash_including('form' => form_data))
.and_return(health_care_application)
Expand Down

0 comments on commit 80bba6a

Please sign in to comment.