From c05911fa10810b8635e102310903e96ae69972bf Mon Sep 17 00:00:00 2001 From: Rohan Mitchell Date: Thu, 11 Oct 2012 10:47:58 +1100 Subject: [PATCH] Fix spree_creditcards table renamed in Spree 1.2 upgrade, remove old pending test --- db/schema.rb | 2 +- spec/lib/open_food_web/order_and_distributor_report_spec.rb | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index c632843072..71f1204896 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -251,7 +251,7 @@ ActiveRecord::Schema.define(:version => 20121010004400) do t.integer "numcode" end - create_table "spree_credit_cards", :force => true do |t| + create_table "spree_creditcards", :force => true do |t| t.string "month" t.string "year" t.string "cc_type" diff --git a/spec/lib/open_food_web/order_and_distributor_report_spec.rb b/spec/lib/open_food_web/order_and_distributor_report_spec.rb index c79506563e..26a04a8cae 100644 --- a/spec/lib/open_food_web/order_and_distributor_report_spec.rb +++ b/spec/lib/open_food_web/order_and_distributor_report_spec.rb @@ -43,9 +43,6 @@ module OpenFoodWeb @payment_method.name, @distributor.name, @distributor.pickup_address.address1, @distributor.pickup_address.city, @distributor.pickup_address.zipcode, @shipping_instructions ] end - - it "should include breakdown an order into each line item" - end end end