diff --git a/spec/features/admin/bulk_order_management_spec.rb b/spec/features/admin/bulk_order_management_spec.rb index 168421f77c..8c4483451b 100644 --- a/spec/features/admin/bulk_order_management_spec.rb +++ b/spec/features/admin/bulk_order_management_spec.rb @@ -34,7 +34,7 @@ feature %q{ page.should have_text "No matching line items found." end - context "displaying the list of line items " do + context "displaying the list of line items" do let!(:o1) { FactoryGirl.create(:order, state: 'complete', completed_at: Time.now ) } let!(:o2) { FactoryGirl.create(:order, state: 'complete', completed_at: Time.now ) } let!(:o3) { FactoryGirl.create(:order, state: 'address', completed_at: nil ) } @@ -374,4 +374,4 @@ feature %q{ end end end -end \ No newline at end of file +end diff --git a/spec/features/admin/bulk_product_update_spec.rb b/spec/features/admin/bulk_product_update_spec.rb index 336792a3ae..73cad12f3c 100644 --- a/spec/features/admin/bulk_product_update_spec.rb +++ b/spec/features/admin/bulk_product_update_spec.rb @@ -97,8 +97,8 @@ feature %q{ visit '/admin/products/bulk_edit' - page.should have_field "price", with: "22.0" - page.should have_field "price", with: "44.0" + page.should have_field "price", with: "22.0" + page.should have_field "price", with: "44.0" page.should_not have_field "price", with: "66.0", visible: true end