diff --git a/core/spec/lib/spree/money_spec.rb b/core/spec/lib/spree/money_spec.rb index 5ae6dcf52b6..12ee9067b70 100644 --- a/core/spec/lib/spree/money_spec.rb +++ b/core/spec/lib/spree/money_spec.rb @@ -148,13 +148,13 @@ it "formats as HTML if asked (nicely) to" do money = Spree::Money.new(10, format: '%n %u') # The HTML'ified version of "10.00 €" - expect(money.to_html).to eq("10.00 ") + expect(money.to_html).to eq("10.00 ") end it "formats as HTML with currency" do money = Spree::Money.new(10, format: '%n %u', with_currency: true) # The HTML'ified version of "10.00 €" - expect(money.to_html).to eq("10.00 EUR") + expect(money.to_html).to eq("10.00 EUR") end end