Skip to content

Commit 43b075b

Browse files
chore(internal): codegen related update (#516)
1 parent 203e36e commit 43b075b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/api_resources/test_subscriptions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def test_method_create_with_all_params(self, client: Orb) -> None:
185185
}
186186
],
187187
start_date=parse_datetime("2019-12-27T18:11:19.117Z"),
188-
trial_duration_days=0,
188+
trial_duration_days=999999,
189189
)
190190
assert_matches_type(SubscriptionCreateResponse, subscription, path=["response"])
191191

@@ -832,7 +832,7 @@ def test_method_schedule_plan_change_with_all_params(self, client: Orb) -> None:
832832
"price_id": "h74gfhdjvn7ujokd",
833833
}
834834
],
835-
trial_duration_days=0,
835+
trial_duration_days=999999,
836836
)
837837
assert_matches_type(SubscriptionSchedulePlanChangeResponse, subscription, path=["response"])
838838

@@ -1297,7 +1297,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncOrb) -> No
12971297
}
12981298
],
12991299
start_date=parse_datetime("2019-12-27T18:11:19.117Z"),
1300-
trial_duration_days=0,
1300+
trial_duration_days=999999,
13011301
)
13021302
assert_matches_type(SubscriptionCreateResponse, subscription, path=["response"])
13031303

@@ -1944,7 +1944,7 @@ async def test_method_schedule_plan_change_with_all_params(self, async_client: A
19441944
"price_id": "h74gfhdjvn7ujokd",
19451945
}
19461946
],
1947-
trial_duration_days=0,
1947+
trial_duration_days=999999,
19481948
)
19491949
assert_matches_type(SubscriptionSchedulePlanChangeResponse, subscription, path=["response"])
19501950

0 commit comments

Comments
 (0)