summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-23 11:05:49 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-23 11:05:53 +0100
commit6fd1a9563e335290b3258f9d19863519e3fa44bf (patch)
treefeb929ec9c9568d64906ccf149ffea5cbaab6717 /tests
parentdbc465de973660ec0530967cd3ae54aeacab70ee (diff)
downloadnextcloud-server-6fd1a9563e335290b3258f9d19863519e3fa44bf.tar.gz
nextcloud-server-6fd1a9563e335290b3258f9d19863519e3fa44bf.zip
add proper prefix for migration tests
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/db/migrator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/db/migrator.php b/tests/lib/db/migrator.php
index 1a1d530f1d2..54267740480 100644
--- a/tests/lib/db/migrator.php
+++ b/tests/lib/db/migrator.php
@@ -39,7 +39,7 @@ class Migrator extends \Test\TestCase {
$this->markTestSkipped('DB migration tests are not supported on MSSQL');
}
$this->manager = new \OC\DB\MDB2SchemaManager($this->connection);
- $this->tableName = strtolower($this->getUniqueID('test_'));
+ $this->tableName = strtolower($this->getUniqueID('oc_test_'));
}
protected function tearDown() {