Skip to content

Commit

Permalink
Merge pull request #39014 from nextcloud/enh/noid/fix-setup-check
Browse files Browse the repository at this point in the history
[stable26] fix setup-check test
  • Loading branch information
szaimen committed Jun 26, 2023
2 parents 7c9e237 + 55c7f6f commit 100c2e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/js/tests/specs/setupchecksSpec.js
Expand Up @@ -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();
});
Expand Down

0 comments on commit 100c2e1

Please sign in to comment.