diff --git a/app/models/form/lettings/questions/ethnic_black.rb b/app/models/form/lettings/questions/ethnic_black.rb index c6f0c81d5..8ae04982f 100644 --- a/app/models/form/lettings/questions/ethnic_black.rb +++ b/app/models/form/lettings/questions/ethnic_black.rb @@ -19,7 +19,7 @@ class Form::Lettings::Questions::EthnicBlack < ::Form::Question "value" => "Caribbean", }, "14" => { - "value" => "Any other Black, African or Caribbean background", + "value" => "Any other Black, African, Caribbean or Black British background", }, }.freeze end diff --git a/app/models/form/sales/questions/buyer1_ethnic_background_black.rb b/app/models/form/sales/questions/buyer1_ethnic_background_black.rb index 16e341a5a..f12185a67 100644 --- a/app/models/form/sales/questions/buyer1_ethnic_background_black.rb +++ b/app/models/form/sales/questions/buyer1_ethnic_background_black.rb @@ -14,6 +14,6 @@ class Form::Sales::Questions::Buyer1EthnicBackgroundBlack < ::Form::Question ANSWER_OPTIONS = { "13" => { "value" => "African" }, "12" => { "value" => "Caribbean" }, - "14" => { "value" => "Any other Black, African or Caribbean background" }, + "14" => { "value" => "Any other Black, African, Caribbean or Black British background" }, }.freeze end diff --git a/app/models/form/sales/questions/buyer2_ethnic_background_black.rb b/app/models/form/sales/questions/buyer2_ethnic_background_black.rb index 8442e9431..09dd7cae7 100644 --- a/app/models/form/sales/questions/buyer2_ethnic_background_black.rb +++ b/app/models/form/sales/questions/buyer2_ethnic_background_black.rb @@ -13,6 +13,6 @@ class Form::Sales::Questions::Buyer2EthnicBackgroundBlack < ::Form::Question ANSWER_OPTIONS = { "13" => { "value" => "African" }, "12" => { "value" => "Caribbean" }, - "14" => { "value" => "Any other Black, African or Caribbean background" }, + "14" => { "value" => "Any other Black, African, Caribbean or Black British background" }, }.freeze end diff --git a/config/forms/2021_2022.json b/config/forms/2021_2022.json index 49931ee05..d4e01cfd1 100644 --- a/config/forms/2021_2022.json +++ b/config/forms/2021_2022.json @@ -1639,7 +1639,7 @@ "value": "Caribbean" }, "14": { - "value": "Any other Black, African or Caribbean background" + "value": "Any other Black, African, Caribbean or Black British background" } } } diff --git a/config/forms/2022_2023.json b/config/forms/2022_2023.json index eeed6c3c7..bd88b1335 100644 --- a/config/forms/2022_2023.json +++ b/config/forms/2022_2023.json @@ -1671,7 +1671,7 @@ "value": "Caribbean" }, "14": { - "value": "Any other Black, African or Caribbean background" + "value": "Any other Black, African, Caribbean or Black British background" } } } diff --git a/spec/models/form/sales/questions/buyer1_ethnic_background_black_spec.rb b/spec/models/form/sales/questions/buyer1_ethnic_background_black_spec.rb index c4b7919c8..2722abf5b 100644 --- a/spec/models/form/sales/questions/buyer1_ethnic_background_black_spec.rb +++ b/spec/models/form/sales/questions/buyer1_ethnic_background_black_spec.rb @@ -39,7 +39,7 @@ RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundBlack, type: :model expect(question.answer_options).to eq({ "12" => { "value" => "Caribbean" }, "13" => { "value" => "African" }, - "14" => { "value" => "Any other Black, African or Caribbean background" }, + "14" => { "value" => "Any other Black, African, Caribbean or Black British background" }, }) end diff --git a/spec/models/form/sales/questions/buyer2_ethnic_background_black_spec.rb b/spec/models/form/sales/questions/buyer2_ethnic_background_black_spec.rb index db5cbba0d..873d43069 100644 --- a/spec/models/form/sales/questions/buyer2_ethnic_background_black_spec.rb +++ b/spec/models/form/sales/questions/buyer2_ethnic_background_black_spec.rb @@ -39,7 +39,7 @@ RSpec.describe Form::Sales::Questions::Buyer2EthnicBackgroundBlack, type: :model expect(question.answer_options).to eq({ "12" => { "value" => "Caribbean" }, "13" => { "value" => "African" }, - "14" => { "value" => "Any other Black, African or Caribbean background" }, + "14" => { "value" => "Any other Black, African, Caribbean or Black British background" }, }) end