Browse Source

CLDC-1505 Buyer 1 working situation must be an adult (#945)

pull/947/head
Sam 2 years ago committed by GitHub
parent
commit
57de10622a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/models/form/sales/questions/buyer1_working_situation.rb
  2. 1
      spec/models/form/sales/questions/buyer1_working_situation_spec.rb

1
app/models/form/sales/questions/buyer1_working_situation.rb

@ -21,6 +21,5 @@ class Form::Sales::Questions::Buyer1WorkingSituation < ::Form::Question
"0" => { "value" => "Other" }, "0" => { "value" => "Other" },
"10" => { "value" => "Buyer prefers not to say" }, "10" => { "value" => "Buyer prefers not to say" },
"7" => { "value" => "Full-time student" }, "7" => { "value" => "Full-time student" },
"9" => { "value" => "Child under 16" },
}.freeze }.freeze
end end

1
spec/models/form/sales/questions/buyer1_working_situation_spec.rb

@ -43,7 +43,6 @@ RSpec.describe Form::Sales::Questions::Buyer1WorkingSituation, type: :model do
"0" => { "value" => "Other" }, "0" => { "value" => "Other" },
"10" => { "value" => "Buyer prefers not to say" }, "10" => { "value" => "Buyer prefers not to say" },
"7" => { "value" => "Full-time student" }, "7" => { "value" => "Full-time student" },
"9" => { "value" => "Child under 16" },
}) })
end end
end end

Loading…
Cancel
Save