Co-authored-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
@@ -10,16 +10,8 @@ def test_validate_provider_credentials():
|
||||
provider = WenxinProvider()
|
||||
|
||||
with pytest.raises(CredentialsValidateFailedError):
|
||||
provider.validate_provider_credentials(
|
||||
credentials={
|
||||
'api_key': 'hahahaha',
|
||||
'secret_key': 'hahahaha'
|
||||
}
|
||||
)
|
||||
provider.validate_provider_credentials(credentials={"api_key": "hahahaha", "secret_key": "hahahaha"})
|
||||
|
||||
provider.validate_provider_credentials(
|
||||
credentials={
|
||||
'api_key': os.environ.get('WENXIN_API_KEY'),
|
||||
'secret_key': os.environ.get('WENXIN_SECRET_KEY')
|
||||
}
|
||||
credentials={"api_key": os.environ.get("WENXIN_API_KEY"), "secret_key": os.environ.get("WENXIN_SECRET_KEY")}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user