summaryrefslogtreecommitdiffstats
path: root/tests/lib/db.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-06-10 11:44:04 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-06-10 11:44:04 +0200
commitfc27052887edc0475eafed87a5673ef5ab74536c (patch)
tree669297fe3bbd5b25b0a7532731657e2129c567ec /tests/lib/db.php
parentb237d0379162b52269a6ea8292165d448d075f46 (diff)
downloadnextcloud-server-fc27052887edc0475eafed87a5673ef5ab74536c.tar.gz
nextcloud-server-fc27052887edc0475eafed87a5673ef5ab74536c.zip
shorten table identifiers in tests
Diffstat (limited to 'tests/lib/db.php')
-rw-r--r--tests/lib/db.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/db.php b/tests/lib/db.php
index 440f3fb6bfd..d6626bc2561 100644
--- a/tests/lib/db.php
+++ b/tests/lib/db.php
@@ -22,8 +22,8 @@ class Test_DB extends PHPUnit_Framework_TestCase {
OC_DB::createDbFromStructure(self::$schema_file);
$this->test_prefix = $r;
- $this->table1 = $this->test_prefix.'contacts_addressbooks';
- $this->table2 = $this->test_prefix.'contacts_cards';
+ $this->table1 = $this->test_prefix.'cntcts_addrsbks';
+ $this->table2 = $this->test_prefix.'cntcts_cards';
$this->table3 = $this->test_prefix.'vcategory';
}