diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-10 08:38:54 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-10 08:38:54 -0700 |
commit | b66559247a3d4f40a8275e4c199d06763a7957d2 (patch) | |
tree | ccb6d376bd8118792da7e9bcbfca10800c3640c9 /tests/lib/db.php | |
parent | 1da112750e1c32ab50980434fea56c5d32723b6f (diff) | |
parent | fc27052887edc0475eafed87a5673ef5ab74536c (diff) | |
download | nextcloud-server-b66559247a3d4f40a8275e4c199d06763a7957d2.tar.gz nextcloud-server-b66559247a3d4f40a8275e4c199d06763a7957d2.zip |
Merge pull request #3653 from owncloud/shorten_identifiers_in_tests
shorten table identifiers in tests
Diffstat (limited to 'tests/lib/db.php')
-rw-r--r-- | tests/lib/db.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/db.php b/tests/lib/db.php index eff01bd9065..7b2a5e309f0 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'; } |