Browse Source

Fix answer options

pull/1094/head
Kat 4 years ago
parent
commit
a8327f57b1
  1. 2
      app/models/form/sales/questions/person_working_situation.rb
  2. 2
      spec/models/form/sales/questions/person_working_situation_spec.rb

2
app/models/form/sales/questions/person_working_situation.rb

@ -18,7 +18,7 @@ class Form::Sales::Questions::PersonWorkingSituation < ::Form::Sales::Questions:
"8" => { "value" => "Unable to work due to long term sick or disability" },
"5" => { "value" => "Retired" },
"0" => { "value" => "Other" },
"10" => { "value" => "Buyer prefers not to say" },
"10" => { "value" => "Person prefers not to say" },
"7" => { "value" => "Full-time student" },
"9" => { "value" => "Child under 16" },
}.freeze

2
spec/models/form/sales/questions/person_working_situation_spec.rb

@ -38,7 +38,7 @@ RSpec.describe Form::Sales::Questions::PersonWorkingSituation, type: :model do
"8" => { "value" => "Unable to work due to long term sick or disability" },
"5" => { "value" => "Retired" },
"0" => { "value" => "Other" },
"10" => { "value" => "Buyer prefers not to say" },
"10" => { "value" => "Person prefers not to say" },
"7" => { "value" => "Full-time student" },
"9" => { "value" => "Child under 16" },
})

Loading…
Cancel
Save