stripe: fix test clocks imports (#9137)

This commit is contained in:
Steve Dignam
2022-11-14 06:44:31 -05:00
committed by GitHub
parent ede6387510
commit 1733c46058
3 changed files with 3 additions and 0 deletions

View File

@@ -2,5 +2,6 @@
stripe\..*\.delete
stripe\..*PaymentIntent\.confirm
stripe\.api_resources\.test_helpers\.test_clock\.TestClock\.advance
stripe\.api_resources\.test_helpers\.TestClock\.advance
stripe\.api_resources\..*\.SearchableAPIResource\.search # Not defined on the actual class in v3, but expected to exist.
stripe\.api_resources\..*\.SearchableAPIResource\.search_auto_paging_iter # Not defined on the actual class in v3, but expected to exist.

View File

@@ -7,6 +7,7 @@ from stripe.api_resources import (
reporting as reporting,
sigma as sigma,
terminal as terminal,
test_helpers as test_helpers,
)
from stripe.api_resources.account import Account as Account
from stripe.api_resources.account_link import AccountLink as AccountLink

View File

@@ -0,0 +1 @@
from stripe.api_resources.test_helpers.test_clock import TestClock as TestClock