From 31eefa3276e4782ba733ab4cd3b1b2602a0fa89d Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Mon, 16 Dec 2024 11:24:58 +0100 Subject: [PATCH] fix wyscout test --- kloppy/tests/test_wyscout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index 62ad807c..eed33de0 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -340,10 +340,10 @@ def test_formation_change_event(self, dataset: EventDataset): len(dataset.find_all("formation_change")) == 2 ) # We shouldn't recognize the change to 4-4-1 as a formation change formation_change_event = dataset.get_event_by_id( - "synthetic-3166-1397082780" + "synthetic-3164-1927029462" ) assert formation_change_event.event_type == EventType.FORMATION_CHANGE assert ( formation_change_event.formation_type - == FormationType.FOUR_THREE_THREE + == FormationType.FOUR_THREE_ONE_TWO )