diff options
Diffstat (limited to 'tests/lib/Repair/RepairSqliteAutoincrementTest.php')
-rw-r--r-- | tests/lib/Repair/RepairSqliteAutoincrementTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Repair/RepairSqliteAutoincrementTest.php b/tests/lib/Repair/RepairSqliteAutoincrementTest.php index 5b3a388dea3..b4be47d0157 100644 --- a/tests/lib/Repair/RepairSqliteAutoincrementTest.php +++ b/tests/lib/Repair/RepairSqliteAutoincrementTest.php @@ -46,7 +46,7 @@ class RepairSqliteAutoincrementTest extends \Test\TestCase { $this->markTestSkipped("Test only relevant on Sqlite"); } - $dbPrefix = $this->config->getSystemValue('dbtableprefix', 'oc_'); + $dbPrefix = $this->config->getSystemValueString('dbtableprefix', 'oc_'); $this->tableName = $this->getUniqueID($dbPrefix . 'autoinc_test'); $this->connection->prepare('CREATE TABLE ' . $this->tableName . '("someid" INTEGER NOT NULL, "text" VARCHAR(16), PRIMARY KEY("someid"))')->execute(); |