From c8a5e24aeecab037cb9bace154f3a2625748a2e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 29 Feb 2024 10:39:02 -0500 Subject: [PATCH] test: fix test --- test/template-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/template-helpers.js b/test/template-helpers.js index 3e22398ee3..00ae777f82 100644 --- a/test/template-helpers.js +++ b/test/template-helpers.js @@ -132,7 +132,7 @@ describe('helpers', () => { it('should show join button if join requests are not disabled and group is not administrators', (done) => { const btn = helpers.membershipBtn({ displayName: 'some group', name: 'some group', disableJoinRequests: false }); - assert.equal(btn, ''); + assert.equal(btn, ''); done(); });