Skip to content

Commit

Permalink
[ART] (fix) Minor rubocop issue; Unskip skipped specs from c3f5570 be…
Browse files Browse the repository at this point in the history
…cause they are passing
  • Loading branch information
ojbucao committed Dec 26, 2024
1 parent c3f5570 commit c8daeb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module AccreditedRepresentativePortal
class PowerOfAttorneyForm < ApplicationRecord
self.ignored_columns += ["city_bidx", "state_bidx", "zipcode_bidx"]
self.ignored_columns += %w[city_bidx state_bidx zipcode_bidx]

belongs_to :power_of_attorney_request,
class_name: 'AccreditedRepresentativePortal::PowerOfAttorneyRequest',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
end

describe 'GET /accredited_representative_portal/v0/power_of_attorney_requests' do
skip 'returns the list of power of attorney requests' do
it 'returns the list of power of attorney requests' do
poa_requests

get('/accredited_representative_portal/v0/power_of_attorney_requests')
Expand Down Expand Up @@ -104,7 +104,7 @@
end

describe 'GET /accredited_representative_portal/v0/power_of_attorney_requests/:id' do
skip 'returns the details of a specific power of attorney request' do
it 'returns the details of a specific power of attorney request' do
get("/accredited_representative_portal/v0/power_of_attorney_requests/#{poa_request.id}")

parsed_response = JSON.parse(response.body)
Expand Down

0 comments on commit c8daeb7

Please sign in to comment.