aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Search/SearchIntegrationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Files/Search/SearchIntegrationTest.php')
-rw-r--r--tests/lib/Files/Search/SearchIntegrationTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Files/Search/SearchIntegrationTest.php b/tests/lib/Files/Search/SearchIntegrationTest.php
index b24f927219e..141eaca238c 100644
--- a/tests/lib/Files/Search/SearchIntegrationTest.php
+++ b/tests/lib/Files/Search/SearchIntegrationTest.php
@@ -30,11 +30,11 @@ class SearchIntegrationTest extends TestCase {
public function testThousandAndOneFilters() {
- $id = $this->cache->put("file10", ['size' => 1, 'mtime' => 50, 'mimetype' => 'foo/folder']);
+ $id = $this->cache->put('file10', ['size' => 1, 'mtime' => 50, 'mimetype' => 'foo/folder']);
$comparisons = [];
for($i = 1; $i <= 1001; $i++) {
- $comparisons[] = new SearchComparison(ISearchComparison::COMPARE_EQUAL, "name", "file$i");
+ $comparisons[] = new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'name', "file$i");
}
$operator = new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_OR, $comparisons);
$query = new SearchQuery($operator, 10, 0, []);