Skip to content

Commit

Permalink
Update factories for decision reason changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eanders committed Aug 8, 2024
1 parent a4948b8 commit f75d210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions spec/factories/match_decision_reasons/dnd_staff_decline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
###

FactoryBot.define do
factory :dnd_staff_decline_reason, class: 'MatchDecisionReasons::DndStaffDecline' do
factory :dnd_staff_decline_reason, class: 'MatchDecisionReasons::Base' do
name { 'Client won\'t be eligible for housing type' }
type { 'MatchDecisionReasons::HousingSubsidyAdminDecline' }
active { true }
ineligible_in_warehouse { false }
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
###

FactoryBot.define do
factory :hsa_decline_reason, class: 'MatchDecisionReasons::HousingSubsidyAdminDecline' do
factory :hsa_decline_reason, class: 'MatchDecisionReasons::Base' do
name { 'Ineligible for Housing Program' }
type { 'MatchDecisionReasons::HousingSubsidyAdminDecline' }
active { true }
ineligible_in_warehouse { true }
end
Expand Down

0 comments on commit f75d210

Please sign in to comment.