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:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-09-07 16:43:12 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-09-07 16:43:12 +0300
commit99dcf870dd46299ffec2e5067c9b3223de3315ce (patch)
treed03849885b0ca71fddc2bd1a2eee07ad9b00ea87 /spec/helpers
parent95415d99d603e0a6fc8755e1d360f8b913cdc8a4 (diff)
Use indigo as default theme
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/preferences_helper_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/preferences_helper_spec.rb b/spec/helpers/preferences_helper_spec.rb
index d85773306ab..69f0e8e2f9e 100644
--- a/spec/helpers/preferences_helper_spec.rb
+++ b/spec/helpers/preferences_helper_spec.rb
@@ -37,9 +37,9 @@ describe PreferencesHelper do
it 'returns the default when id is invalid' do
stub_user(theme_id: Gitlab::Themes.count + 5)
- allow(Gitlab.config.gitlab).to receive(:default_theme).and_return(2)
+ allow(Gitlab.config.gitlab).to receive(:default_theme).and_return(1)
- expect(helper.user_application_theme).to eq 'ui_dark'
+ expect(helper.user_application_theme).to eq 'ui_indigo'
end
end