aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Diagnostics/QueryLoggerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Diagnostics/QueryLoggerTest.php')
-rw-r--r--tests/lib/Diagnostics/QueryLoggerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Diagnostics/QueryLoggerTest.php b/tests/lib/Diagnostics/QueryLoggerTest.php
index 4cc45cf47d4..04b8d8570e7 100644
--- a/tests/lib/Diagnostics/QueryLoggerTest.php
+++ b/tests/lib/Diagnostics/QueryLoggerTest.php
@@ -22,14 +22,14 @@ class QueryLoggerTest extends TestCase {
public function testQueryLogger() {
// Module is not activated and this should not be logged
- $this->logger->startQuery("SELECT", ["testuser", "count"], ["string", "int"]);
+ $this->logger->startQuery('SELECT', ['testuser', 'count'], ['string', 'int']);
$this->logger->stopQuery();
$queries = $this->logger->getQueries();
$this->assertSame(0, sizeof($queries));
// Activate module and log some query
$this->logger->activate();
- $this->logger->startQuery("SELECT", ["testuser", "count"], ["string", "int"]);
+ $this->logger->startQuery('SELECT', ['testuser', 'count'], ['string', 'int']);
$this->logger->stopQuery();
$queries = $this->logger->getQueries();