diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-26 16:39:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 16:39:09 +0200 |
commit | 67e2d4b7be088b7dbb4501e1b7b5bb7b8c973d09 (patch) | |
tree | 6c7c3a4c165505cf9c5e5556a1d3f0a946ca99a4 | |
parent | d9d6fbd5c7fc2639de4fdcec504f7b36ff81fb3d (diff) | |
parent | 8c3b3a6e3b5519e21e2feacb04172b405ceb21e8 (diff) | |
download | nextcloud-server-67e2d4b7be088b7dbb4501e1b7b5bb7b8c973d09.tar.gz nextcloud-server-67e2d4b7be088b7dbb4501e1b7b5bb7b8c973d09.zip |
Merge pull request #39016 from nextcloud/backport/39014/stable25
[stable25] 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 52addfe8e4d..6d33255c0b7 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(); }); |