diff --git a/app/models/form/sales/questions/buyer1_working_situation.rb b/app/models/form/sales/questions/buyer1_working_situation.rb index 8056f849d..fb4362dc8 100644 --- a/app/models/form/sales/questions/buyer1_working_situation.rb +++ b/app/models/form/sales/questions/buyer1_working_situation.rb @@ -20,7 +20,7 @@ class Form::Sales::Questions::Buyer1WorkingSituation < ::Form::Question ANSWER_OPTIONS = { "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" }, diff --git a/app/models/form/sales/questions/buyer2_working_situation.rb b/app/models/form/sales/questions/buyer2_working_situation.rb index e5eed38de..54fcb5931 100644 --- a/app/models/form/sales/questions/buyer2_working_situation.rb +++ b/app/models/form/sales/questions/buyer2_working_situation.rb @@ -19,7 +19,7 @@ class Form::Sales::Questions::Buyer2WorkingSituation < ::Form::Question ANSWER_OPTIONS = { "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" }, diff --git a/app/models/form/sales/questions/person_working_situation.rb b/app/models/form/sales/questions/person_working_situation.rb index 2e9ae1edb..fd5506170 100644 --- a/app/models/form/sales/questions/person_working_situation.rb +++ b/app/models/form/sales/questions/person_working_situation.rb @@ -20,7 +20,7 @@ class Form::Sales::Questions::PersonWorkingSituation < ::Form::Question { "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" }, diff --git a/spec/models/form/sales/questions/buyer1_working_situation_spec.rb b/spec/models/form/sales/questions/buyer1_working_situation_spec.rb index 4e8c4431f..0ed4cf384 100644 --- a/spec/models/form/sales/questions/buyer1_working_situation_spec.rb +++ b/spec/models/form/sales/questions/buyer1_working_situation_spec.rb @@ -35,7 +35,7 @@ RSpec.describe Form::Sales::Questions::Buyer1WorkingSituation, type: :model do expect(question.answer_options).to eq({ "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" }, diff --git a/spec/models/form/sales/questions/buyer2_working_situation_spec.rb b/spec/models/form/sales/questions/buyer2_working_situation_spec.rb index c0c429b2d..5a27e1b5e 100644 --- a/spec/models/form/sales/questions/buyer2_working_situation_spec.rb +++ b/spec/models/form/sales/questions/buyer2_working_situation_spec.rb @@ -39,7 +39,7 @@ RSpec.describe Form::Sales::Questions::Buyer2WorkingSituation, type: :model do expect(question.answer_options).to eq({ "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" }, 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 30974fba4..29641dd05 100644 --- a/spec/models/form/sales/questions/person_working_situation_spec.rb +++ b/spec/models/form/sales/questions/person_working_situation_spec.rb @@ -24,7 +24,7 @@ RSpec.describe Form::Sales::Questions::PersonWorkingSituation, type: :model do expect(question.answer_options).to eq({ "1" => { "value" => "Full-time - 30 hours or more" }, "2" => { "value" => "Part-time - Less than 30 hours" }, - "3" => { "value" => "In government training into work, such as New Deal" }, + "3" => { "value" => "In government training into work" }, "4" => { "value" => "Jobseeker" }, "6" => { "value" => "Not seeking work" }, "8" => { "value" => "Unable to work due to long term sick or disability" },