diff options
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/api/videos/multiple-servers.ts | 4 | ||||
-rw-r--r-- | server/tests/api/videos/video-comments.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/api/videos/multiple-servers.ts b/server/tests/api/videos/multiple-servers.ts index 6aa996038..e80d69cf3 100644 --- a/server/tests/api/videos/multiple-servers.ts +++ b/server/tests/api/videos/multiple-servers.ts | |||
@@ -934,7 +934,7 @@ describe('Test multiple servers', function () { | |||
934 | expect(deletedComment.text).to.equal('') | 934 | expect(deletedComment.text).to.equal('') |
935 | expect(deletedComment.inReplyToCommentId).to.be.null | 935 | expect(deletedComment.inReplyToCommentId).to.be.null |
936 | expect(deletedComment.account).to.be.null | 936 | expect(deletedComment.account).to.be.null |
937 | expect(deletedComment.totalReplies).to.equal(3) | 937 | expect(deletedComment.totalReplies).to.equal(2) |
938 | expect(dateIsValid(deletedComment.createdAt as string)).to.be.true | 938 | expect(dateIsValid(deletedComment.createdAt as string)).to.be.true |
939 | expect(dateIsValid(deletedComment.updatedAt as string)).to.be.true | 939 | expect(dateIsValid(deletedComment.updatedAt as string)).to.be.true |
940 | expect(dateIsValid(deletedComment.deletedAt as string)).to.be.true | 940 | expect(dateIsValid(deletedComment.deletedAt as string)).to.be.true |
@@ -976,7 +976,7 @@ describe('Test multiple servers', function () { | |||
976 | expect(comment.createdAt).to.not.be.null | 976 | expect(comment.createdAt).to.not.be.null |
977 | expect(comment.deletedAt).to.not.be.null | 977 | expect(comment.deletedAt).to.not.be.null |
978 | expect(comment.account).to.be.null | 978 | expect(comment.account).to.be.null |
979 | expect(comment.totalReplies).to.equal(3) | 979 | expect(comment.totalReplies).to.equal(2) |
980 | } | 980 | } |
981 | } | 981 | } |
982 | }) | 982 | }) |
diff --git a/server/tests/api/videos/video-comments.ts b/server/tests/api/videos/video-comments.ts index a5ff3a39d..b6b002307 100644 --- a/server/tests/api/videos/video-comments.ts +++ b/server/tests/api/videos/video-comments.ts | |||
@@ -231,7 +231,7 @@ describe('Test video comments', function () { | |||
231 | expect(res.body.data[0].isDeleted).to.be.true | 231 | expect(res.body.data[0].isDeleted).to.be.true |
232 | expect(res.body.data[0].deletedAt).to.not.be.null | 232 | expect(res.body.data[0].deletedAt).to.not.be.null |
233 | expect(res.body.data[0].account).to.be.null | 233 | expect(res.body.data[0].account).to.be.null |
234 | expect(res.body.data[0].totalReplies).to.equal(3) | 234 | expect(res.body.data[0].totalReplies).to.equal(2) |
235 | expect(res.body.data[1].text).to.equal('super thread 2') | 235 | expect(res.body.data[1].text).to.equal('super thread 2') |
236 | expect(res.body.data[1].totalReplies).to.equal(0) | 236 | expect(res.body.data[1].totalReplies).to.equal(0) |
237 | expect(res.body.data[2].text).to.equal('super thread 3') | 237 | expect(res.body.data[2].text).to.equal('super thread 3') |