diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-16 06:08:30 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-16 06:08:30 +0000 |
commit | 34ab9be97ecf84dd2b7a3b8f3149c0f7d1d7ab5c (patch) | |
tree | 9025a7319c4a0bfe3aa3168fa750b183bf33cde1 /spec/helpers | |
parent | 08ed6a867b690a04fe7a74c9ba697cf18f6107d7 (diff) | |
download | gitlab-ce-34ab9be97ecf84dd2b7a3b8f3149c0f7d1d7ab5c.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers')
-rw-r--r-- | spec/helpers/application_settings_helper_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/application_settings_helper_spec.rb b/spec/helpers/application_settings_helper_spec.rb index e5deeb990a1..41008ff8eaf 100644 --- a/spec/helpers/application_settings_helper_spec.rb +++ b/spec/helpers/application_settings_helper_spec.rb @@ -92,7 +92,7 @@ describe ApplicationSettingsHelper do it 'returns self_monitoring_project_exists false' do expect(helper.self_monitoring_project_data).to include( - 'self_monitoring_project_exists' => false + 'self_monitoring_project_exists' => "false" ) end @@ -112,7 +112,7 @@ describe ApplicationSettingsHelper do it 'returns self_monitoring_project_exists true' do expect(helper.self_monitoring_project_data).to include( - 'self_monitoring_project_exists' => true + 'self_monitoring_project_exists' => "true" ) end |