diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-18 18:55:44 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-18 18:57:46 +0200 |
commit | ba230888c6f227dc91fdb1d620d395360343908d (patch) | |
tree | d6079e9024df5da56610861cf31a2ccc6c5d1b3a /tests | |
parent | bbf758b1b0e74b24b6891c1401807f8fdbfec834 (diff) | |
download | nextcloud-server-ba230888c6f227dc91fdb1d620d395360343908d.tar.gz nextcloud-server-ba230888c6f227dc91fdb1d620d395360343908d.zip |
Fix filenames and class names in tests/lib/comments
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/comments/commenttest.php (renamed from tests/lib/comments/comment.php) | 3 | ||||
-rw-r--r-- | tests/lib/comments/managertest.php (renamed from tests/lib/comments/manager.php) | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/tests/lib/comments/comment.php b/tests/lib/comments/commenttest.php index 9b3f2ab166e..b55c345f71f 100644 --- a/tests/lib/comments/comment.php +++ b/tests/lib/comments/commenttest.php @@ -5,8 +5,7 @@ namespace Test\Comments; use OCP\Comments\IComment; use Test\TestCase; -class Test_Comments_Comment extends TestCase -{ +class CommentTest extends TestCase { public function testSettersValidInput() { $comment = new \OC\Comments\Comment(); diff --git a/tests/lib/comments/manager.php b/tests/lib/comments/managertest.php index c55f4728883..90a8399eb2b 100644 --- a/tests/lib/comments/manager.php +++ b/tests/lib/comments/managertest.php @@ -6,12 +6,11 @@ use OCP\Comments\ICommentsManager; use Test\TestCase; /** - * Class Test_Comments_Manager + * Class ManagerTest * * @group DB */ -class Test_Comments_Manager extends TestCase -{ +class ManagerTest extends TestCase { public function setUp() { parent::setUp(); |