From d8221379a4e0f2ee9ef5e441aa0e0d1332ba9335 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Wed, 12 Apr 2023 21:22:39 +0100 Subject: [PATCH] Correct test case --- src/icalendar/tests/test_issue_348_exception_parsing_value.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icalendar/tests/test_issue_348_exception_parsing_value.py b/src/icalendar/tests/test_issue_348_exception_parsing_value.py index 05e7425..0e112ef 100644 --- a/src/icalendar/tests/test_issue_348_exception_parsing_value.py +++ b/src/icalendar/tests/test_issue_348_exception_parsing_value.py @@ -9,4 +9,4 @@ def test_calendar_can_be_parsed_correctly(calendars): see https://github.com/collective/icalendar/issues/348 """ freebusy = calendars.issue_348_exception_parsing_value.walk("VFREEBUSY")[0] - assert freebusy["ORGANIZER"]["CN"] == "Sixt SE" \ No newline at end of file + assert freebusy["ORGANIZER"].params["CN"] == "Sixt SE"