set automatic_payment_methods

This commit is contained in:
Sawyer Hollenshead
2026-02-20 09:43:34 -08:00
parent 13c1081312
commit 17d4eb1fc1

View File

@@ -429,6 +429,9 @@ def test_payment_flow():
# Create payment intent # Create payment intent
intent = stripe.PaymentIntent.create( intent = stripe.PaymentIntent.create(
amount=1000, amount=1000,
automatic_payment_methods={
'enabled': True
},
currency='usd', currency='usd',
customer=customer.id customer=customer.id
) )