diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-03 07:18:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 07:18:44 +0100 |
commit | 252d2d39583c7daf838a6a24d0f72660ed01c371 (patch) | |
tree | 5c52fbfd581168d544fc2988824bcf51e0ddf495 /core | |
parent | f09eba51a95ca4a53b00217aeeba66ab850cdad7 (diff) | |
parent | 5ae5aae324be2a53346720f7dedff0c329df1091 (diff) | |
download | nextcloud-server-252d2d39583c7daf838a6a24d0f72660ed01c371.tar.gz nextcloud-server-252d2d39583c7daf838a6a24d0f72660ed01c371.zip |
Merge pull request #25898 from nextcloud/fix/jsunit
Fix the jsunit tests
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(); |