diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-02 21:30:32 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-02 21:30:32 +0100 |
commit | 5ae5aae324be2a53346720f7dedff0c329df1091 (patch) | |
tree | 98e2efcc17248737528d9e6dd9ce93d8dce947c7 /core | |
parent | 85fe0222ed471ce272cb62c5e51f0a9d250a2fc2 (diff) | |
download | nextcloud-server-5ae5aae324be2a53346720f7dedff0c329df1091.tar.gz nextcloud-server-5ae5aae324be2a53346720f7dedff0c329df1091.zip |
Fix the jsunit tests
Followup to #25874
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 18a40b4fddc..a5e55a21209 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -822,7 +822,7 @@ describe('OC.SetupChecks tests', function() { async.done(function( data, s, x ){ expect(data).toEqual([{ - msg: 'The PHP OPcache is not properly configured. <a target="_blank" rel="noreferrer noopener" class="external" href="https://example.org/link/to/doc">For better performance it is recommended ↗</a> to use the following settings in the <code>php.ini</code>:' + "<pre><code>opcache.enable=1\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.memory_consumption=128\nopcache.save_comments=1\nopcache.revalidate_freq=1</code></pre>", + msg: 'The PHP OPcache module is not properly configured. <a target="_blank" rel="noreferrer noopener" class="external" href="https://example.org/link/to/doc">For better performance it is recommended ↗</a> to use the following settings in the <code>php.ini</code>:' + "<pre><code>opcache.enable=1\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.memory_consumption=128\nopcache.save_comments=1\nopcache.revalidate_freq=1</code></pre>", type: OC.SetupChecks.MESSAGE_TYPE_INFO }]); done(); |