Skip to content

Commit 61a5f0f

Browse files
authored
test: fix cred invalidation typo (#212)
1 parent e702dc8 commit 61a5f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/dbapi/async/test_auth_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def test_credentials_invalidation(
4141
# Invalidate the token
4242
c._client.auth._token += "_"
4343
# Invalidate credentials
44-
for cred in ("username", "password", "id", "secret"):
44+
for cred in ("username", "password", "client_id", "client_secret"):
4545
if hasattr(c._client.auth, cred):
4646
setattr(c._client.auth, cred, "_")
4747

0 commit comments

Comments
 (0)