Changed a test with with non-ascii chars

pull/92/head
Victor Varvaryuk 2013-03-11 11:12:14 +04:00
rodzic 04c20b363f
commit 5228902397
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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):