From 2781212e0e774b707d2ef3510386e3dd59980049 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Thu, 12 Jan 2012 18:56:37 +0100 Subject: [PATCH] remove pdb --- src/icalendar/tests/test_icalendar.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/icalendar/tests/test_icalendar.py b/src/icalendar/tests/test_icalendar.py index bc277be..3477125 100644 --- a/src/icalendar/tests/test_icalendar.py +++ b/src/icalendar/tests/test_icalendar.py @@ -20,7 +20,6 @@ class FuckYouTests(unittest.TestCase): from icalendar.parser import Contentlines, Contentline c = Contentlines([Contentline('BEGIN:VEVENT\\r\\n')]) c.append(Contentline(''.join(['123456789 ']*10)+'\\r\\n')) - import pdb ; pdb.set_trace() output = c.to_ical() self.assertEqual(output, "BEGIN:VEVENT\\r\\n\\r\\n123456789 123456789 123456789 123456789 123456789 123456789 123456789 1234\\r\\n 56789 123456789 123456789 \\r\\n")