diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2018-08-06 12:17:52 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-08-06 12:17:52 +0000 |
commit | 77c75d2b1b4821b1f5fafd107e1925c225fb6a33 (patch) | |
tree | 092585e345f56a48fbb0a29992d9684f2b2ec121 /spec/requests | |
parent | 2b78eab1fa26ae734db53a13a9e2bce931d6a1ce (diff) | |
parent | baffe82ace1ca3ee247c1eee2a5c21aea2256539 (diff) | |
download | gitlab-ce-77c75d2b1b4821b1f5fafd107e1925c225fb6a33.tar.gz |
Merge branch 'bvl-instance-stats-default' into 'master'
Hide instance statistics by default
Closes #50000
See merge request gitlab-org/gitlab-ce!21044
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/api/settings_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/api/settings_spec.rb b/spec/requests/api/settings_spec.rb index 3e0f47b84a1..9a662c21354 100644 --- a/spec/requests/api/settings_spec.rb +++ b/spec/requests/api/settings_spec.rb @@ -25,7 +25,7 @@ describe API::Settings, 'Settings' do expect(json_response['ed25519_key_restriction']).to eq(0) expect(json_response['circuitbreaker_failure_count_threshold']).not_to be_nil expect(json_response['performance_bar_allowed_group_id']).to be_nil - expect(json_response['instance_statistics_visibility_private']).to be(false) + expect(json_response['instance_statistics_visibility_private']).to be(true) expect(json_response).not_to have_key('performance_bar_allowed_group_path') expect(json_response).not_to have_key('performance_bar_enabled') end |