From 06f6fc11a7263a92d44fd2119bc5367ddabd0d44 Mon Sep 17 00:00:00 2001 From: Naz Date: Fri, 7 Oct 2022 10:20:41 +0800 Subject: [PATCH] Cleaned up tags e2e webhook test refs https://github.com/TryGhost/Ghost/issues/15537 refs https://github.com/TryGhost/Ghost/commit/4110ffaa2cb5700cc453044fe21ee3e65762626f - The test had minor formatting issues not worth an extra back-forth during the PR review --- ghost/core/test/e2e-webhooks/tags.test.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ghost/core/test/e2e-webhooks/tags.test.js b/ghost/core/test/e2e-webhooks/tags.test.js index 22e8027390..9e1ad54932 100644 --- a/ghost/core/test/e2e-webhooks/tags.test.js +++ b/ghost/core/test/e2e-webhooks/tags.test.js @@ -1,13 +1,12 @@ const {agentProvider, mockManager, fixtureManager, matchers} = require('../utils/e2e-framework'); -const {anyGhostAgent, anyObjectId, anyISODateTime, anyUuid, anyString, anyContentVersion, anyNumber, anyLocalURL} = matchers; +const {anyGhostAgent, anyObjectId, anyISODateTime, anyString, anyContentVersion, anyNumber, anyLocalURL} = matchers; const tagSnapshot = { created_at: anyISODateTime, description: anyString, id: anyObjectId, updated_at: anyISODateTime, - url: anyLocalURL, - visibility: 'public' + url: anyLocalURL }; describe('tag.* events', function () { @@ -61,4 +60,4 @@ describe('tag.* events', function () { } }); }); -}); \ No newline at end of file +});