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:
authorEric Eastwood <contact@ericeastwood.com>2018-03-28 19:46:48 +0300
committerEric Eastwood <contact@ericeastwood.com>2018-03-28 19:46:48 +0300
commit7a36fd106fd3041ef77a18fff971344fbdab7e7d (patch)
tree3575aa984ba90d15185ee2605bd29a493acff09b /spec/serializers
parentfca02e24768ea11d2f04a58437cb5557fd3c93fa (diff)
Be explicit about when yellow favicon is used
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/status_entity_spec.rb2
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