Skip to content

Commit

Permalink
fix spec descriptions for CarnegieBlacklightConfigurator (DLC-1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
barmintor committed Jul 24, 2024
1 parent 1d40098 commit 912f53e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
described_class.configure(config)
end

it 'only includes the field values in facet.field' do
it 'has a search field configuration for fulltext' do
expect(config.search_fields['fulltext_tesim']).to be_a Blacklight::Configuration::SearchField
end
end
Expand All @@ -22,7 +22,7 @@
described_class.configure(config, fulltext: true)
end

it 'only includes the field values in facet.field' do
it 'has a search field configuration for fulltext' do
expect(config.search_fields['fulltext_tesim']).to be_a Blacklight::Configuration::SearchField
end
end
Expand All @@ -31,7 +31,7 @@
described_class.configure(config, fulltext: false)
end

it 'only includes the field values in facet.field' do
it 'has no search field configuration for fulltext' do
expect(config.search_fields['fulltext_tesim']).to be_nil
end
end
Expand Down

1 comment on commit 912f53e

@JackBlackLight
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, now it all makes sense. Thanks!

Please sign in to comment.