diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-26 15:44:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 15:44:48 +0200 |
commit | 100c2e1c4efddf66718d3c0ffc78c9dc1e08696d (patch) | |
tree | e1ff9f7d8154cd1dcd55e971bef90ec2e412c05c | |
parent | 7c9e237747738489429817080c8c403f23823459 (diff) | |
parent | 55c7f6f8c5f050638da2c3917768907709f3a693 (diff) | |
download | nextcloud-server-100c2e1c4efddf66718d3c0ffc78c9dc1e08696d.tar.gz nextcloud-server-100c2e1c4efddf66718d3c0ffc78c9dc1e08696d.zip |
Merge pull request #39014 from nextcloud/enh/noid/fix-setup-check
[stable26] fix setup-check test
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 57536c59569..10691577247 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -1971,8 +1971,8 @@ describe('OC.SetupChecks tests', function() { async.done(function( data, s, x ){ expect(data).toEqual([{ - msg: 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the <a target="_blank" rel="noreferrer noopener" class="external" href="https://docs.example.org/admin-security">security tips ↗</a>.', - type: OC.SetupChecks.MESSAGE_TYPE_WARNING + msg: 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the <a target="_blank" rel="noreferrer noopener" class="external" href="https://docs.example.org/admin-security">security tips ↗</a>. Without it some important web functionality like "copy to clipboard" or "service workers" will not work!', + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }]); done(); }); |