Browse Source

Merge pull request #36266 from nextcloud/bugfix/noid/fix-double-where-in-custom-property-test

Fix double where in CustomProperiesBackendTest
tags/v26.0.0beta1
Joas Schilling 1 year ago
parent
commit
13846ac2a8
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/dav/tests/unit/DAV/CustomPropertiesBackendTest.php

+ 1
- 1
apps/dav/tests/unit/DAV/CustomPropertiesBackendTest.php View File

@@ -107,7 +107,7 @@ class CustomPropertiesBackendTest extends TestCase {
$query->select('propertyname', 'propertyvalue')
->from('properties')
->where($query->expr()->eq('userid', $query->createNamedParameter($user)))
->where($query->expr()->eq('propertypath', $query->createNamedParameter($this->formatPath($path))));
->andWhere($query->expr()->eq('propertypath', $query->createNamedParameter($this->formatPath($path))));

$result = $query->execute();
$data = [];

Loading…
Cancel
Save