From 556874723a88d3514532a119cfa971335e295946 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Wed, 17 Jul 2024 20:17:33 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20post-p?= =?UTF-8?q?rocessor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- tests/test_credentials_async.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_credentials_async.py b/tests/test_credentials_async.py index 6592a60af..51e4f0611 100644 --- a/tests/test_credentials_async.py +++ b/tests/test_credentials_async.py @@ -60,10 +60,10 @@ async def test_static_credentials_ctor(): async def test_static_credentials_apply_default(): static_creds = credentials.StaticCredentials(token="earth") headers = {} - + await static_creds.apply(headers) assert headers["authorization"] == "Bearer earth" - + await static_creds.apply(headers, token="orchid") assert headers["authorization"] == "Bearer orchid"