summaryrefslogtreecommitdiff
path: root/tests/oauth2
diff options
context:
space:
mode:
authorBenjamin Pereto <benjamin@sandchaschte.ch>2018-12-03 17:59:25 +0100
committerBenjamin Pereto <benjamin@sandchaschte.ch>2018-12-03 17:59:25 +0100
commitea849f66a92f6ce78cae6574e8d20a19a267ac96 (patch)
treeb9d1a92d6bf7dc7421baf1b160229fbf073fcffa /tests/oauth2
parent719a5f3bc62465ab8502442458c72016bf91b7cd (diff)
downloadoauthlib-ea849f66a92f6ce78cae6574e8d20a19a267ac96.tar.gz
`invalid_scope` status code should be 400
Diffstat (limited to 'tests/oauth2')
-rw-r--r--tests/oauth2/rfc6749/grant_types/test_refresh_token.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oauth2/rfc6749/grant_types/test_refresh_token.py b/tests/oauth2/rfc6749/grant_types/test_refresh_token.py
index f055c7d..32a0977 100644
--- a/tests/oauth2/rfc6749/grant_types/test_refresh_token.py
+++ b/tests/oauth2/rfc6749/grant_types/test_refresh_token.py
@@ -99,7 +99,7 @@ class RefreshTokenGrantTest(TestCase):
token = json.loads(body)
self.assertEqual(self.mock_validator.save_token.call_count, 0)
self.assertEqual(token['error'], 'invalid_scope')
- self.assertEqual(status_code, 401)
+ self.assertEqual(status_code, 400)
def test_invalid_token(self):
self.mock_validator.validate_refresh_token.return_value = False