diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-26 12:38:24 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-27 11:10:04 +0100 |
commit | e1f3abf7a583669ba1fed703365de9e12a76e22c (patch) | |
tree | 75cffc34cf486d4b1759160dfb5cd93c4b6f3dd0 /tests/lib/testcase.php | |
parent | 3338eede3ccb2ead223a46fd537b7504bb4786e0 (diff) | |
download | nextcloud-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.php | 4 |
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`'; |