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" }, })