[CE] Reduce the diff with EE in spec/helpers/appearances_helper_spec.rb

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2019-03-28 10:58:53 +01:00
parent 13230d18d9
commit cf07f9fd00
No known key found for this signature in database
GPG Key ID: 98DFFD1C0C62B70B
1 changed files with 3 additions and 5 deletions

View File

@ -65,12 +65,10 @@ describe AppearancesHelper do
end
describe '#brand_title' do
it 'returns the default CE title when no appearance is present' do
allow(helper)
.to receive(:current_appearance)
.and_return(nil)
it 'returns the default title when no appearance is present' do
allow(helper).to receive(:current_appearance).and_return(nil)
expect(helper.brand_title).to eq('GitLab Community Edition')
expect(helper.brand_title).to eq(helper.default_brand_title)
end
end
end