diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-04 10:23:23 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-15 08:47:30 +0200 |
commit | 00e7b2b956e2901a9c3baa13af3948f1cd67378e (patch) | |
tree | ca354b9dd5ea7eb22ec9b457d8d23501e5305224 /apps/dav/tests | |
parent | 839f27b50185847056f23d1ab2b081a70e142f7f (diff) | |
download | nextcloud-server-00e7b2b956e2901a9c3baa13af3948f1cd67378e.tar.gz nextcloud-server-00e7b2b956e2901a9c3baa13af3948f1cd67378e.zip |
Reduce load of the contacts search when we know it can't match
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/CardDAV/CardDavBackendTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php b/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php index 27139dfd470..c32aad5a056 100644 --- a/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php +++ b/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php @@ -762,7 +762,7 @@ class CardDavBackendTest extends TestCase { 'limit' => ['john', ['FN'], ['limit' => 1], [['uri0', 'John Doe']]], 'limit and offset' => ['john', ['FN'], ['limit' => 1, 'offset' => 1], [['uri1', 'John M. Doe']]], 'find "_" escaped' => ['_', ['CLOUD'], [], [['uri2', 'find without options']]], - 'find not empty ClOUD' => ['%_%', ['CLOUD'], ['escape_like_param'=>false], [['uri0', 'John Doe'], ['uri2', 'find without options']]], + 'find not empty CLOUD' => ['%_%', ['CLOUD'], ['escape_like_param'=>false], [['uri0', 'John Doe'], ['uri2', 'find without options']]], ]; } |