Commit cf07f9fd authored by Rémy Coutable's avatar Rémy Coutable

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

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 13230d18
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment