diff options
author | lmcandrew <lmcandrew@gitlab.com> | 2019-05-13 13:23:04 +0100 |
---|---|---|
committer | lmcandrew <lmcandrew@gitlab.com> | 2019-05-13 13:23:04 +0100 |
commit | e48305c02c5ed566ed6d98ff82e0d897a692008d (patch) | |
tree | dc7277c91ef7d7e85580c2317969b1d9b312ecc9 | |
parent | 3061eee6ed00708225931bab566c20d91a06a5c0 (diff) | |
download | gitlab-ce-e48305c02c5ed566ed6d98ff82e0d897a692008d.tar.gz |
EE backport to CE of favicon_spec.rbsingle-codebase-favicon-specs-cemove-ee-favicon-spec-changes-to-ee
-rw-r--r-- | spec/lib/gitlab/favicon_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/favicon_spec.rb b/spec/lib/gitlab/favicon_spec.rb index 49a423191bb..dce56bbd2c4 100644 --- a/spec/lib/gitlab/favicon_spec.rb +++ b/spec/lib/gitlab/favicon_spec.rb @@ -7,7 +7,7 @@ RSpec.describe Gitlab::Favicon, :request_store do expect(described_class.main).to match_asset_path '/assets/favicon.png' end - it 'has blue favicon for development' do + it 'has blue favicon for development', unless: Gitlab.ee? do allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new('development')) expect(described_class.main).to match_asset_path '/assets/favicon-blue.png' end |