diff --git a/src/icalendar/tests/test_property_params.py b/src/icalendar/tests/test_property_params.py index 950c121..b449ba6 100644 --- a/src/icalendar/tests/test_property_params.py +++ b/src/icalendar/tests/test_property_params.py @@ -81,7 +81,7 @@ class TestPropertyParams(unittest.TestCase): vevent = icalendar.Event.from_ical( 'BEGIN:VEVENT\r\n' 'ORGANIZER;CN=that\\, that\\; that\\\\ that\\:' - ':that\\, that\\; that\\\\ that\\:\r\n' + ':это\\, то\\; that\\\\ that\\:\r\n' 'END:VEVENT\r\n' ) self.assertEqual( @@ -90,7 +90,7 @@ class TestPropertyParams(unittest.TestCase): ) self.assertEqual( vevent['ORGANIZER'], - r'that, that; that\ that:' + r'это, то; that\ that:' ) def test_parameters_class(self):