summaryrefslogtreecommitdiffstats
path: root/tests/unit/db/MapperFactoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/db/MapperFactoryTest.php')
-rw-r--r--tests/unit/db/MapperFactoryTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/db/MapperFactoryTest.php b/tests/unit/db/MapperFactoryTest.php
index 3ebc0ce17..b5aa76dc0 100644
--- a/tests/unit/db/MapperFactoryTest.php
+++ b/tests/unit/db/MapperFactoryTest.php
@@ -43,7 +43,8 @@ class MapperFactoryTest extends \PHPUnit_Framework_TestCase {
public function testGetItemMapperPostgres() {
$factory = new MapperFactory('pgsql', $this->db);
- $this->assertTrue($factory->getItemMapper() instanceof \OCA\News\Db\Postgres\ItemMapper);
+ $this->assertTrue($factory->getItemMapper()
+ instanceof \OCA\News\Db\Postgres\ItemMapper);
}