From dddee3e5c75f5b11454c398b1017fa894de2855b Mon Sep 17 00:00:00 2001 From: IsaacMtz19 Date: Sun, 14 Dec 2025 11:25:28 -0600 Subject: [PATCH] test: fix date format causing ValueError in test_run_geo_evaluation --- Murray/tests/test_run_geo_evaluation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Murray/tests/test_run_geo_evaluation.py b/Murray/tests/test_run_geo_evaluation.py index ad112ae..ff98b26 100644 --- a/Murray/tests/test_run_geo_evaluation.py +++ b/Murray/tests/test_run_geo_evaluation.py @@ -23,8 +23,8 @@ def test_run_geo_evaluation(sample_data): """Checks that the geographic evaluation function runs correctly""" results = run_geo_evaluation( data_input=sample_data, - start_treatment="01-03-2023", # dayfirst=True format: DD-MM-YYYY (March 1st) - end_treatment="10-03-2023", # March 10th + start_treatment="2023-03-01", # March 1st, 2023 (day 60 in the dataset) + end_treatment="2023-03-10", # March 10th, 2023 (day 69 in the dataset) treatment_group=["Location_0", "Location_1"], spend=50000, n_permutations=100,