diff --git a/app/models/form/lettings/questions/ethnic_black.rb b/app/models/form/lettings/questions/ethnic_black.rb index 68beca8ad..11db3b40d 100644 --- a/app/models/form/lettings/questions/ethnic_black.rb +++ b/app/models/form/lettings/questions/ethnic_black.rb @@ -18,7 +18,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 4c24f1433..1d9ea3454 100644 --- a/app/models/form/sales/questions/buyer1_ethnic_background_black.rb +++ b/app/models/form/sales/questions/buyer1_ethnic_background_black.rb @@ -13,6 +13,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 11d47790c..2189026b8 100644 --- a/app/models/form/sales/questions/buyer2_ethnic_background_black.rb +++ b/app/models/form/sales/questions/buyer2_ethnic_background_black.rb @@ -12,6 +12,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 e0ef19198..54886543e 100644 --- a/config/forms/2022_2023.json +++ b/config/forms/2022_2023.json @@ -1674,7 +1674,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 c324556f7..6c0c17568 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 8e772f870..0a4a66b64 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