diff --git a/spec/system/admin/variant_overrides_spec.rb b/spec/system/admin/variant_overrides_spec.rb index a121f1f707..51b07f5e8b 100644 --- a/spec/system/admin/variant_overrides_spec.rb +++ b/spec/system/admin/variant_overrides_spec.rb @@ -254,9 +254,11 @@ RSpec.describe " context "with overrides" do let!(:vo) { - create(:variant_override, :on_demand, variant:, hub:, price: 77.77, - default_stock: 1000, resettable: true, - tag_list: ["tag1", "tag2", "tag3"]) + create( + :variant_override, :on_demand, + variant:, hub:, price: 77.77, default_stock: 1000, resettable: true, + tag_list: ["tag1", "tag2", "tag3"] + ) } let!(:vo_no_auth) { create(:variant_override, variant:, hub: hub2, price: 1, count_on_hand: 2)