From c201bf4507f7ffd592c867bd2c97dd6bf5ebc1b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sun, 21 May 2023 17:02:59 -0400 Subject: [PATCH] test: fix test --- test/controllers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/controllers.js b/test/controllers.js index 893d4892e8..147b393500 100644 --- a/test/controllers.js +++ b/test/controllers.js @@ -1687,7 +1687,7 @@ describe('Controllers', () => { assert.equal(res.statusCode, 200); assert(body); const notif = body.notifications[0]; - assert.equal(notif.bodyShort, notifData.bodyShort); + assert.equal(notif.bodyShort, 'test1 has posted a reply to: test2'); assert.equal(notif.bodyLong, notifData.bodyLong); assert.equal(notif.pid, notifData.pid); assert.equal(notif.path, nconf.get('relative_path') + notifData.path);