mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #36266 from nextcloud/bugfix/noid/fix-double-where-in-custom-property-test
Fix double where in CustomProperiesBackendTest
This commit is contained in:
commit
13846ac2a8
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue