diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-06 13:56:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 13:56:06 +0200 |
commit | db782fefa13c75586c00bdd8b913253f92f70c1e (patch) | |
tree | 37bfc2e020f4c0d38359cc88f03b4b70fb1f5bdf /apps/dav/tests | |
parent | fb69d6d195d0dc4a4472a93d7b7ce86eaf202268 (diff) | |
parent | 00e7b2b956e2901a9c3baa13af3948f1cd67378e (diff) | |
download | nextcloud-server-db782fefa13c75586c00bdd8b913253f92f70c1e.tar.gz nextcloud-server-db782fefa13c75586c00bdd8b913253f92f70c1e.zip |
Merge pull request #21222 from nextcloud/bugfix/18965/reduce-contacts-search-load
Reduce contacts search load
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']]], ]; } |