From 8c3b3a6e3b5519e21e2feacb04172b405ceb21e8 Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 26 Jun 2023 14:38:24 +0200 Subject: [PATCH] fix setup-check test Signed-off-by: Simon L --- core/js/tests/specs/setupchecksSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 52addfe8e4d57..6d33255c0b75a 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 security tips ↗.', - 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 security tips ↗. Without it some important web functionality like "copy to clipboard" or "service workers" will not work!', + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }]); done(); });