Skip to content

Commit

Permalink
test: fix cred invalidation typo (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin authored Oct 12, 2022
1 parent e702dc8 commit 61a5f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/dbapi/async/test_auth_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def test_credentials_invalidation(
# Invalidate the token
c._client.auth._token += "_"
# Invalidate credentials
for cred in ("username", "password", "id", "secret"):
for cred in ("username", "password", "client_id", "client_secret"):
if hasattr(c._client.auth, cred):
setattr(c._client.auth, cred, "_")

Expand Down

0 comments on commit 61a5f0f

Please sign in to comment.