Skip to content

Commit 9f4751b

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 1c4ea9c commit 9f4751b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

unit_tests/sources/declarative/auth/test_oauth.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ def test_initialize_declarative_oauth_with_token_expiry_date_as_timestamp(
314314
assert isinstance(oauth._token_expiry_date, AirbyteDateTime)
315315
assert oauth.get_token_expiry_date() == ab_datetime_parse(expected_date)
316316

317-
def test_given_no_access_token_but_expiry_in_the_future_when_refresh_token_then_fetch_access_token(self) -> None:
317+
def test_given_no_access_token_but_expiry_in_the_future_when_refresh_token_then_fetch_access_token(
318+
self,
319+
) -> None:
318320
expiry_date = ab_datetime_now().add(timedelta(days=1))
319321
oauth = DeclarativeOauth2Authenticator(
320322
token_refresh_endpoint="https://refresh_endpoint.com/",
@@ -327,7 +329,6 @@ def test_given_no_access_token_but_expiry_in_the_future_when_refresh_token_then_
327329
grant_type="client",
328330
)
329331

330-
331332
with HttpMocker() as http_mocker:
332333
http_mocker.post(
333334
HttpRequest(

0 commit comments

Comments
 (0)