From 7b05eebc5bef514641e0e731c3b2cf4461f646a3 Mon Sep 17 00:00:00 2001 From: luisramos0 Date: Tue, 26 Feb 2019 14:54:24 +0000 Subject: [PATCH] Fix rubocop issue in db migration --- .../20190221131741_delete_account_invoices_adjustments.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20190221131741_delete_account_invoices_adjustments.rb b/db/migrate/20190221131741_delete_account_invoices_adjustments.rb index f8baa0e5bf..1f1af59594 100644 --- a/db/migrate/20190221131741_delete_account_invoices_adjustments.rb +++ b/db/migrate/20190221131741_delete_account_invoices_adjustments.rb @@ -1,7 +1,7 @@ class DeleteAccountInvoicesAdjustments < ActiveRecord::Migration def up Spree::Adjustment - .where(:source_type => 'BillablePeriod') + .where(source_type: 'BillablePeriod') .destroy_all end