summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/endpoints
diff options
context:
space:
mode:
authorOmer Korner <omerkorner@gmail.com>2014-11-26 14:36:48 +0200
committerOmer Korner <omerkorner@gmail.com>2014-11-26 14:36:48 +0200
commitdd86c4b4b05fc9574452056a1983172e66d5bf86 (patch)
treeaa581a1c0f2bce5a1563af454363429cb4718c2b /tests/oauth2/rfc6749/endpoints
parentca848a242257507074d272cb72c77a4b078cbc0b (diff)
downloadoauthlib-dd86c4b4b05fc9574452056a1983172e66d5bf86.tar.gz
Updated revocation test
Diffstat (limited to 'tests/oauth2/rfc6749/endpoints')
-rw-r--r--tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py b/tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py
index 9cdf2fd..bdaedfa 100644
--- a/tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py
+++ b/tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py
@@ -30,7 +30,7 @@ class RevocationEndpointTest(TestCase):
h, b, s = self.endpoint.create_revocation_response(self.uri,
headers=self.headers, body=body)
self.assertEqual(h, {})
- self.assertEqual(b, None)
+ self.assertEqual(b, '')
self.assertEqual(s, 200)
def test_revoke_with_callback(self):