diff --git a/app/views/hyrax/admin/collection_types/index.html.erb b/app/views/hyrax/admin/collection_types/index.html.erb index 63c1a2358f..94481e2417 100644 --- a/app/views/hyrax/admin/collection_types/index.html.erb +++ b/app/views/hyrax/admin/collection_types/index.html.erb @@ -40,7 +40,7 @@ <% unless collection_type.admin_set? || collection_type.user_collection? %> diff --git a/spec/factories/hyrax_collection.rb b/spec/factories/hyrax_collection.rb index 775289a0e0..77d5d6d390 100644 --- a/spec/factories/hyrax_collection.rb +++ b/spec/factories/hyrax_collection.rb @@ -26,7 +26,7 @@ after(:create) do |collection, evaluator| if evaluator.members.present? evaluator.members.map do |member| - member.membner_of_collection_ids += [collection.id] + member.member_of_collection_ids += [collection.id] member = Hyrax.persister.save(resource: member) Hyrax.index_adapter.save(resource: member) if evaluator.with_index end