Skip to content

Commit

Permalink
Fix tests for transport parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
XeCycle authored and gtsystem committed Nov 6, 2024
1 parent efd0cb6 commit 22213f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def test_client_httpx_attributes(user_auth, httpx_async_client, kubeconfig):
verify=True,
cert=None,
auth=user_auth.return_value,
trust_env=False
trust_env=False,
transport=None,
)


Expand Down
3 changes: 2 additions & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ def test_client_httpx_attributes(user_auth, httpx_client, kubeconfig):
verify=True,
cert=None,
auth=user_auth.return_value,
trust_env=False
trust_env=False,
transport=None,
)


Expand Down

0 comments on commit 22213f7

Please sign in to comment.