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 +});