From aa9b5c84d92f329574961582ccbc95b0917bec0e Mon Sep 17 00:00:00 2001 From: Rohan Mitchell Date: Thu, 6 Feb 2014 16:14:29 +1100 Subject: [PATCH] Fix expected variant option type name/presentation --- spec/models/spree/variant_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/models/spree/variant_spec.rb b/spec/models/spree/variant_spec.rb index 9dc0d70cf0..2031a4d22b 100644 --- a/spec/models/spree/variant_spec.rb +++ b/spec/models/spree/variant_spec.rb @@ -113,8 +113,8 @@ module Spree ov = Spree::OptionValue.last ov.option_type.should == @ot - ov.name.should == '10 g foo' - ov.presentation.should == '10 g foo' + ov.name.should == '10g foo' + ov.presentation.should == '10g foo' v.option_values.should include ov end @@ -139,8 +139,8 @@ module Spree ov = v.option_values.last ov.option_type.should == @ot - ov.name.should == '10 g foo' - ov.presentation.should == '10 g foo' + ov.name.should == '10g foo' + ov.presentation.should == '10g foo' v_orig.option_values.should include ov end