From 4b8515358cd2b0c4bb4a0a345e4706e697b71d66 Mon Sep 17 00:00:00 2001 From: Luis Ramos Date: Mon, 31 Aug 2020 12:08:48 +0100 Subject: [PATCH] Remove reference to FactoryGirl, it's FactoryBot that is used in OFN --- spec/models/spree/variant_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/spree/variant_spec.rb b/spec/models/spree/variant_spec.rb index 0462ea9e61..333b039f39 100644 --- a/spec/models/spree/variant_spec.rb +++ b/spec/models/spree/variant_spec.rb @@ -21,7 +21,7 @@ module Spree context "product has other variants" do describe "option value accessors" do before { - @multi_variant = FactoryGirl.create :variant, product: variant.product + @multi_variant = create(:variant, product: variant.product) variant.product.reload }