def test_constructor_keyword_args(self):
     source = StaticCredentialsSource(token="abcd")
     assert source.token() == "abcd"
 def test_constructor_positional_args(self):
     source = StaticCredentialsSource("abcd")
     assert source.token() == "abcd"