From a22d2926e49027c48fc9ab25bdd40d1138d2a02d Mon Sep 17 00:00:00 2001 From: tamsin johnson Date: Thu, 26 Oct 2023 10:41:26 -0700 Subject: [PATCH] disable Hyrax::FileSetVisibilityPropagator unless using ActiveFedora this class is only used for/only supports ActiveFedora models. --- spec/services/hyrax/file_set_visibility_propagator_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/services/hyrax/file_set_visibility_propagator_spec.rb b/spec/services/hyrax/file_set_visibility_propagator_spec.rb index 85b9bd01bc..e9ac36fc76 100644 --- a/spec/services/hyrax/file_set_visibility_propagator_spec.rb +++ b/spec/services/hyrax/file_set_visibility_propagator_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -RSpec.describe Hyrax::FileSetVisibilityPropagator do +RSpec.describe Hyrax::FileSetVisibilityPropagator, :active_fedora do subject(:propagator) { described_class.new(source: work) } let(:work) { FactoryBot.create(:work_with_files) }