Support for client credentials flow

This commit is contained in:
Paul Lamere
2015-04-01 10:21:56 -04:00
parent a78421a6e8
commit 1b75562ce4
3 changed files with 3 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ class TestSpotipy(unittest.TestCase):
def test_unauthenticated_post_fails(self):
with self.assertRaises(SpotifyException) as cm:
self.spotify.user_playlist_create("spotify", "Best hits of the 90s")
self.assertEqual(cm.exception.http_status, 403)
self.assertEqual(cm.exception.http_status, 401)
def test_custom_requests_session(self):
from requests import Session