Skip to content

Commit 0368434

Browse files
committed
fix tests, remove extraneous arg
1 parent 732ca9e commit 0368434

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,6 @@ def await_running(
383383
*,
384384
# Use polling_config to configure the "long" polling behavior.
385385
polling_config: PollingConfig | None = None,
386-
extra_headers: Headers | None = None,
387-
extra_query: Query | None = None,
388-
extra_body: Body | None = None,
389-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
390386
) -> DevboxView:
391387
"""Wait for a devbox to be in running state.
392388

tests/api_resources/test_devboxes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,9 @@ def test_method_create_and_await_running_with_config(self, client: Runloop) -> N
12271227
create_args={
12281228
"name": "test",
12291229
},
1230-
polling_config=config,
1230+
request_args={
1231+
"polling_config": config,
1232+
}
12311233
)
12321234

12331235
assert result.id == "test_id"

0 commit comments

Comments
 (0)