Skip to content

Commit f06638c

Browse files
committed
fix tests
1 parent 3b5757f commit f06638c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clients/python/test/test_osparc/test_async_http_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class FakeRetryCallState:
2929
def test_retry_strategy(cfg: osparc.Configuration, fake_retry_state):
3030
async_client = AsyncHttpClient(
3131
configuration=cfg,
32-
request_type="get",
32+
method="get",
3333
url="79ae41cc-0d89-4714-ac9d-c23ee1b110ce",
3434
body={},
3535
)
@@ -76,7 +76,7 @@ def _side_effect(request: httpx.Request):
7676
with pytest.raises(httpx.HTTPError):
7777
async with AsyncHttpClient(
7878
configuration=cfg,
79-
request_type="post",
79+
method="post",
8080
url=_exit_url,
8181
body=_body,
8282
) as session:

0 commit comments

Comments
 (0)