diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-09 14:17:14 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-09 14:17:14 +0100 |
commit | 1f1643b35fef94b64e6997e1af2a3ca87fe0d889 (patch) | |
tree | 8f8a766aa872e9350d4633e52bbee4af3485e19c /tests | |
parent | d2ca9e9c0faa3f6838482c14318a60b6c9e2a800 (diff) | |
parent | 95374e1404e6342dcd34d40bcb4d8acb197bf831 (diff) | |
download | nextcloud-server-1f1643b35fef94b64e6997e1af2a3ca87fe0d889.tar.gz nextcloud-server-1f1643b35fef94b64e6997e1af2a3ca87fe0d889.zip |
Merge pull request #12995 from owncloud/tbelau666-master
Use Doctrines filter by table name
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/db/migrator.php | 2 |
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() { |