diff --git a/backend/spec/features/admin/orders/adjustments_spec.rb b/backend/spec/features/admin/orders/adjustments_spec.rb index 0a85c84f763..b645ac4c76f 100644 --- a/backend/spec/features/admin/orders/adjustments_spec.rb +++ b/backend/spec/features/admin/orders/adjustments_spec.rb @@ -65,7 +65,7 @@ fill_in "adjustment_amount", with: "" fill_in "adjustment_label", with: "" click_button "Continue" - expect(page).to have_content("Description can't be blank") + expect(page).to have_content("Label can't be blank") expect(page).to have_content("Amount is not a number") end end @@ -98,7 +98,7 @@ fill_in "adjustment_amount", with: "" fill_in "adjustment_label", with: "" click_button "Continue" - expect(page).to have_content("Description can't be blank") + expect(page).to have_content("Label can't be blank") expect(page).to have_content("Amount is not a number") end end diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index e849e148ed9..c9a0c121652 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -30,7 +30,7 @@ en: spree/adjustment: adjustable: Adjustable amount: Amount - label: Description + label: Label name: Name state: State adjustment_reason_id: Reason