Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-26 14:38:24 +0300
committerJoas Schilling <nickvergessen@gmx.de>2014-11-27 13:10:04 +0300
commite1f3abf7a583669ba1fed703365de9e12a76e22c (patch)
tree75cffc34cf486d4b1759160dfb5cd93c4b6f3dd0 /tests
parent3338eede3ccb2ead223a46fd537b7504bb4786e0 (diff)
Correctly namespace and autoload DatabaseException
Diffstat (limited to 'tests')
-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`';