From 29b6a03fc1b81a2ae8272e2b18d57335558955d0 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 10 Dec 2015 09:29:24 +0100 Subject: [PATCH] Add assertion to test This seems to be missing on that test. --- tests/lib/comments/comment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/lib/comments/comment.php b/tests/lib/comments/comment.php index ae7e913eaa..02adea8729 100644 --- a/tests/lib/comments/comment.php +++ b/tests/lib/comments/comment.php @@ -58,6 +58,8 @@ class Test_Comments_Comment extends TestCase $comment = new \OC\Comments\Comment(); $comment->setId('c23'); $comment->setId(''); + + $this->assertSame('', $comment->getId()); } public function simpleSetterProvider() {