We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e738e3 commit e0cb6e7Copy full SHA for e0cb6e7
tests/unit/test_auth_handler.py
@@ -7,7 +7,7 @@
7
8
9
class TestAuthorizationHandler(unittest.TestCase):
10
- def test_uses_scopes_from_auth_options(self):
+ def test_auth_options_override_default_scopes(self):
11
auth_option = ['email.read']
12
default_scopes = ['.default']
13
@@ -17,7 +17,7 @@ def test_uses_scopes_from_auth_options(self):
17
auth_handler_scopes = auth_handler.get_scopes()
18
self.assertEqual(auth_option, auth_handler_scopes)
19
20
- def test_auth_option_does_not_overwrite_default_scopes(self):
+ def test_auth_handler_get_scopes_does_not_overwrite_default_scopes(self):
21
22
23
0 commit comments