diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2018-03-28 11:46:48 -0500 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2018-03-28 11:46:48 -0500 |
commit | 7a36fd106fd3041ef77a18fff971344fbdab7e7d (patch) | |
tree | 3575aa984ba90d15185ee2605bd29a493acff09b /spec/serializers/status_entity_spec.rb | |
parent | fca02e24768ea11d2f04a58437cb5557fd3c93fa (diff) | |
download | gitlab-ce-7a36fd106fd3041ef77a18fff971344fbdab7e7d.tar.gz |
Be explicit about when yellow favicon is used
Diffstat (limited to 'spec/serializers/status_entity_spec.rb')
-rw-r--r-- | spec/serializers/status_entity_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/serializers/status_entity_spec.rb b/spec/serializers/status_entity_spec.rb index 11dc974a5cf..70402bac2e2 100644 --- a/spec/serializers/status_entity_spec.rb +++ b/spec/serializers/status_entity_spec.rb @@ -26,7 +26,7 @@ describe StatusEntity do expect(entity.as_json[:favicon]).to match_asset_path('/assets/ci_favicons/dev/favicon_status_success.ico') end - it 'contains a canavary namespaced favicon if canary env' do + it 'contains a canary namespaced favicon if canary env' do stub_env('CANARY', 'true') expect(entity.as_json[:favicon]).to match_asset_path('/assets/ci_favicons/canary/favicon_status_success.ico') end |