Skip to content

Commit e0cb6e7

Browse files
committed
Update test
1 parent 8e738e3 commit e0cb6e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_auth_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TestAuthorizationHandler(unittest.TestCase):
10-
def test_uses_scopes_from_auth_options(self):
10+
def test_auth_options_override_default_scopes(self):
1111
auth_option = ['email.read']
1212
default_scopes = ['.default']
1313

@@ -17,7 +17,7 @@ def test_uses_scopes_from_auth_options(self):
1717
auth_handler_scopes = auth_handler.get_scopes()
1818
self.assertEqual(auth_option, auth_handler_scopes)
1919

20-
def test_auth_option_does_not_overwrite_default_scopes(self):
20+
def test_auth_handler_get_scopes_does_not_overwrite_default_scopes(self):
2121
auth_option = ['email.read']
2222
default_scopes = ['.default']
2323

0 commit comments

Comments
 (0)