#56 - Uncomment an assertion in scope tests. It was commented out whilst adding support for Django 1.6.

This commit is contained in:
Evan Culver 2014-03-18 14:22:39 -07:00
parent a7d7e0ffa4
commit 6b5bc0d3ad
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class AuthorizationTest(BaseOAuth2TestCase):
self.get_client().client_id,
constants.SCOPES[0][1]))
response = self.client.get(self.auth_url2())
# self.assertEqual(200, response.status_code)
self.assertEqual(200, response.status_code)
def test_authorization_is_not_granted(self):
self.login()