From f631c8b62ac023ac2f3e33cdb133dca6d91035d1 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 20 Apr 2026 14:02:25 -0400 Subject: [PATCH] fix: returned object type in ap test --- test/activitypub/actors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/activitypub/actors.js b/test/activitypub/actors.js index e185984c1b..470601b38c 100644 --- a/test/activitypub/actors.js +++ b/test/activitypub/actors.js @@ -690,7 +690,7 @@ describe('Controllers', () => { }); it('should return a Note type object', () => { - assert.strictEqual(body.type, 'Note'); + assert.strictEqual(body.type, 'Article'); }); });