Skip to content

Commit

Permalink
set contentAnonymous === false
Browse files Browse the repository at this point in the history
  • Loading branch information
kmakarska committed Feb 27, 2025
1 parent 6b04be1 commit 2a623eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/topics.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 2a623eb

Please sign in to comment.