Commit 9fa97202 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Merge branch 'ee-specific-dev-favicon' into 'master'

Adds a EE specific dev favicon

See merge request !1343
parents a3049e55 f3b5d68f
......@@ -35,7 +35,7 @@ module PageLayoutHelper
end
def favicon
Rails.env.development? ? 'favicon-blue.ico' : 'favicon.ico'
Rails.env.development? ? 'favicon-green.ico' : 'favicon.ico'
end
def page_image
......
---
title: Adds a EE specific dev favicon
merge_request:
author:
......@@ -48,7 +48,7 @@ describe PageLayoutHelper do
it 'has blue favicon for development' do
allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new('development'))
expect(helper.favicon).to eq 'favicon-blue.ico'
expect(helper.favicon).to eq 'favicon-green.ico'
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