diff --git a/ghost/core/test/utils/agents/content-api-test-agent.js b/ghost/core/test/utils/agents/content-api-test-agent.js index d32cd17781..ee3ec58e97 100644 --- a/ghost/core/test/utils/agents/content-api-test-agent.js +++ b/ghost/core/test/utils/agents/content-api-test-agent.js @@ -15,9 +15,9 @@ class ContentAPITestAgent extends TestAgent { super(app, options); } - async authenticateWithSecret(secret) { + async authenticateWithKey(key) { this.defaults.queryParams = { - key: secret + key }; } @@ -26,7 +26,7 @@ class ContentAPITestAgent extends TestAgent { * @description Authenticate with default content api keys */ authenticate() { - return this.authenticateWithSecret(defaultContentAPISecretKey); + return this.authenticateWithKey(defaultContentAPISecretKey); } }