From 6b5bc0d3ad706d2aaa47fa476f38406cddd01236 Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Tue, 18 Mar 2014 14:22:39 -0700 Subject: [PATCH] #56 - Uncomment an assertion in scope tests. It was commented out whilst adding support for Django 1.6. --- provider/oauth2/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/oauth2/tests.py b/provider/oauth2/tests.py index b7931af..53de8af 100644 --- a/provider/oauth2/tests.py +++ b/provider/oauth2/tests.py @@ -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()