From 2a623eb6c3e8d83ba5a79c62a5a04d3204d359ce Mon Sep 17 00:00:00 2001 From: Katie Makarska Date: Wed, 26 Feb 2025 21:58:37 -0500 Subject: [PATCH] set contentAnonymous === false --- test/topics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/topics.js b/test/topics.js index 81d3752..d5995c6 100644 --- a/test/topics.js +++ b/test/topics.js @@ -304,7 +304,7 @@ describe('Topic\'s', () => { const postData = await apiPosts.getReplies({ uid: 0 }, { pid: newPost.pid }); assert.ok(postData); - assert(!postData[3].contentAnonymous); + assert(postData[3].contentAnonymous === false); }); it('should error if pid is not a number', async () => {