summaryrefslogtreecommitdiffstats
path: root/tests/db/ItemMapperTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/db/ItemMapperTest.php')
-rw-r--r--tests/db/ItemMapperTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/db/ItemMapperTest.php b/tests/db/ItemMapperTest.php
index ab7cfa043..40ff691b6 100644
--- a/tests/db/ItemMapperTest.php
+++ b/tests/db/ItemMapperTest.php
@@ -59,9 +59,9 @@ class Test extends \OCA\AppFramework\Utility\MapperTestUtility {
array('test' => 1),
array('test' => 2)
);
- $sql = 'SELECT * FROM `*PREFIX*news_items`
- WHERE user_id = ?
- AND feed_id = ?';
+ $sql = 'SELECT * FROM `*PREFIX*news_items` ' .
+ 'WHERE user_id = ? ' .
+ 'AND feed_id = ?';
$this->setMapperResult($sql, array($feedId, $userId), $rows);