From b1d889450fb5a6d9cb987c1eca4800809293b072 Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Tue, 27 Feb 2024 10:25:56 -0500 Subject: [PATCH] fixup! Added output to the get helper when the timeout is exceeded --- ghost/core/test/unit/frontend/helpers/get.test.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ghost/core/test/unit/frontend/helpers/get.test.js b/ghost/core/test/unit/frontend/helpers/get.test.js index e93ceee274..8ed52a4cbf 100644 --- a/ghost/core/test/unit/frontend/helpers/get.test.js +++ b/ghost/core/test/unit/frontend/helpers/get.test.js @@ -22,9 +22,7 @@ describe('{{#get}} helper', function () { }); beforeEach(function () { - fn = sinon.spy(function () { - return ''; - }); + fn = sinon.spy(); inverse = sinon.spy(); locals = {root: {}, globalProp: {foo: 'bar'}};