aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/testcase.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-26 12:38:24 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-27 11:10:04 +0100
commite1f3abf7a583669ba1fed703365de9e12a76e22c (patch)
tree75cffc34cf486d4b1759160dfb5cd93c4b6f3dd0 /tests/lib/testcase.php
parent3338eede3ccb2ead223a46fd537b7504bb4786e0 (diff)
downloadnextcloud-server-e1f3abf7a583669ba1fed703365de9e12a76e22c.tar.gz
nextcloud-server-e1f3abf7a583669ba1fed703365de9e12a76e22c.zip
Correctly namespace and autoload DatabaseException
Diffstat (limited to 'tests/lib/testcase.php')
-rw-r--r--tests/lib/testcase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/testcase.php b/tests/lib/testcase.php
index e6f5ca71dac..934bc5fa8f3 100644
--- a/tests/lib/testcase.php
+++ b/tests/lib/testcase.php
@@ -64,7 +64,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase {
/**
* Remove all entries from the storages table
- * @throws \DatabaseException
+ * @throws \OC\DatabaseException
*/
static protected function tearDownAfterClassCleanStorages() {
$sql = 'DELETE FROM `*PREFIX*storages`';
@@ -74,7 +74,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase {
/**
* Remove all entries from the filecache table
- * @throws \DatabaseException
+ * @throws \OC\DatabaseException
*/
static protected function tearDownAfterClassCleanFileCache() {
$sql = 'DELETE FROM `*PREFIX*filecache`';