From 61a5f0f1c514147ad5cfa1a433b333aeb5a529ce Mon Sep 17 00:00:00 2001 From: Petro Tiurin <93913847+ptiurin@users.noreply.github.com> Date: Wed, 12 Oct 2022 15:32:44 +0100 Subject: [PATCH] test: fix cred invalidation typo (#212) --- tests/integration/dbapi/async/test_auth_async.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/dbapi/async/test_auth_async.py b/tests/integration/dbapi/async/test_auth_async.py index e3613be8b7f..d74e1462ebd 100644 --- a/tests/integration/dbapi/async/test_auth_async.py +++ b/tests/integration/dbapi/async/test_auth_async.py @@ -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, "_")