def test_delete_single_comment(self):
        '''
        Test case to check if test_comment is deleted from the database
        '''

        self.new_comment.save_comment()

        test_comment = Comment(comment_content="You work is crap")

        test_comment.save_comment()

        test_comment.delete_single_comment(test_comment.id)

        gotten_comments = Comment.get_comments(4990826417581240726341234)

        self.assertFalse( len(gotten_comments) == len(Comment.query.all()) )