Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 09fea39

Browse files
fix test
1 parent f5338d1 commit 09fea39

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graphql_api/tests/test_billing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ def test_fetch_unverified_payment_methods(self):
5858
patch("services.billing.stripe.SetupIntent.list") as setup_intent_list_mock,
5959
):
6060
payment_intent_list_mock.return_value.data = [payment_intent]
61+
payment_intent_list_mock.return_value.has_more = False
6162
setup_intent_list_mock.return_value.data = [setup_intent]
63+
setup_intent_list_mock.return_value.has_more = False
6264

6365
result = self.gql_request(query, owner=self.owner)
6466

0 commit comments

Comments
 (0)