Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Feb 16, 2024
1 parent 5877097 commit fba5cfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/test_api_requestor.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ async def async_iter():
rcode=200,
)

resp = await requestor._request_stream_async(
resp = await requestor.request_stream_async(
meth,
self.valid_path,
{},
Expand Down
8 changes: 2 additions & 6 deletions tests/test_generated_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -17810,9 +17810,7 @@ async def test_quotes_line_items_get_service_async(
api_base="https://api.stripe.com",
)

def test_quotes_pdf_get(
self, http_client_mock: HTTPClientMock
) -> None:
def test_quotes_pdf_get(self, http_client_mock: HTTPClientMock) -> None:
stripe.Quote.pdf("qt_xxxxxxxxxxxxx")
http_client_mock.assert_requested(
"get",
Expand Down Expand Up @@ -22849,9 +22847,7 @@ async def test_tax_codes_get_2_service_async(
api_base="https://api.stripe.com",
)

def test_tax_forms_pdf_get(
self, http_client_mock: HTTPClientMock
) -> None:
def test_tax_forms_pdf_get(self, http_client_mock: HTTPClientMock) -> None:
stripe.tax.Form.pdf("form_xxxxxxxxxxxxx")
http_client_mock.assert_requested(
"get",
Expand Down

0 comments on commit fba5cfd

Please sign in to comment.