From 250008d37917621e9f7be63e429f221328871443 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Fri, 23 Jul 2021 12:46:26 +0200 Subject: [PATCH] changed twitter API endpoint for oauth test (#7472) --- spec/OAuth1.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/OAuth1.spec.js b/spec/OAuth1.spec.js index aa6e8ed0..21ae7d95 100644 --- a/spec/OAuth1.spec.js +++ b/spec/OAuth1.spec.js @@ -97,7 +97,7 @@ describe('OAuth', function () { consumer_key: 'invalid_consumer_key', consumer_secret: 'invalid_consumer_secret', }; - const path = '/1.1/account/settings.json'; + const path = '/1.1/favorites/list.json'; const params = { lang: 'en' }; const oauthClient = new OAuth(options); oauthClient.get(path, params).then(function (data) {