Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Knox <psimyn@gmail.com>2017-02-15 22:55:52 +0300
committerSimon Knox <psimyn@gmail.com>2017-02-15 22:55:52 +0300
commit679ce9dbb35021bec3bc048948e471ba3989e518 (patch)
tree365d758db0a0c4e3bc5dd035fa1c2df364fad85a /spec/helpers/page_layout_helper_spec.rb
parente15032eded3b35097409817ddb1844164173ce1a (diff)
dev favicon is blue, not purple
Diffstat (limited to 'spec/helpers/page_layout_helper_spec.rb')
-rw-r--r--spec/helpers/page_layout_helper_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/page_layout_helper_spec.rb b/spec/helpers/page_layout_helper_spec.rb
index 872679a6ce3..2cc0b40b2d0 100644
--- a/spec/helpers/page_layout_helper_spec.rb
+++ b/spec/helpers/page_layout_helper_spec.rb
@@ -46,9 +46,9 @@ describe PageLayoutHelper do
expect(helper.favicon).to eq 'favicon.ico'
end
- it 'has purple favicon for development' 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-purple.ico'
+ expect(helper.favicon).to eq 'favicon-blue.ico'
end
end