From a8327f57b14446bc79a6152cf22ef29c631e642d Mon Sep 17 00:00:00 2001 From: Kat Date: Thu, 15 Dec 2022 15:30:41 +0000 Subject: [PATCH] Fix answer options --- app/models/form/sales/questions/person_working_situation.rb | 2 +- .../form/sales/questions/person_working_situation_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/form/sales/questions/person_working_situation.rb b/app/models/form/sales/questions/person_working_situation.rb index d5f2687dd..7a798b689 100644 --- a/app/models/form/sales/questions/person_working_situation.rb +++ b/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 diff --git a/spec/models/form/sales/questions/person_working_situation_spec.rb b/spec/models/form/sales/questions/person_working_situation_spec.rb index f20d9c2fc..a8beb49d1 100644 --- a/spec/models/form/sales/questions/person_working_situation_spec.rb +++ b/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" }, })