Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def test_request_header_nested_response_body(client: PageableClient):
assert_result(result)


@pytest.mark.asyncio
async def test_list_without_continuation(client: PageableClient):
result = [p async for p in client.list_without_continuation()]
assert_result(result)
# @pytest.mark.asyncio
# async def test_list_without_continuation(client: PageableClient):
# result = [p async for p in client.list_without_continuation()]
# assert_result(result)
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ def test_request_header_nested_response_body(client: PageableClient):
assert_result(result)


def test_list_without_continuation(client: PageableClient):
result = list(client.list_without_continuation())
assert_result(result)
# def test_list_without_continuation(client: PageableClient):
# result = list(client.list_without_continuation())
# assert_result(result)
Loading