Skip to content

Commit 82e76b6

Browse files
fix(ci): assert payment_links instead of a missing payment_intents service
The generated client never exposed payment_intents, so the surface smoke test failed on every Python version. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 5082a49 commit 82e76b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_generated_surface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_client_services(self):
1515
)
1616
# spot-check newly added surfaces
1717
self.assertTrue(hasattr(c, "charges"))
18-
self.assertTrue(hasattr(c, "payment_intents"))
18+
self.assertTrue(hasattr(c, "payment_links"))
1919

2020
expected = sorted(
2121
name

0 commit comments

Comments
 (0)