diff --git a/tests/tests.py b/tests/tests.py index 0157ae5..7fdea6b 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -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, 401) + self.assertEqual(cm.exception.http_status, 403) def test_custom_requests_session(self): from requests import Session