We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93e5326 commit 47e7547Copy full SHA for 47e7547
1 file changed
tests/campaigns_test.py
@@ -169,8 +169,8 @@ def test_given_incorrect_campaign_id_when_calling_schedule_then_type_error_is_re
169
def test_given_correct_campaign_id_and_schedule_parameters_when_calling_schedule_then_campaign_schedule_is_updated(
170
self,
171
):
172
- date = datetime.now() + timedelta(days=2)
173
- date = date.strftime("%Y-%m-%d")
+ # Use fixed date that matches the VCR cassette recording
+ date = "2025-09-21"
174
175
params = {
176
"delivery": "scheduled",
0 commit comments