Code

Removed debug print from mailsplit test.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 23 Oct 2001 00:57:32 +0000 (00:57 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 23 Oct 2001 00:57:32 +0000 (00:57 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@327 57a73879-2fb5-44c3-a270-3262357dd7e2

test/test_mailsplit.py

index 62e8c29b16c052446606832e37fdd6eddf968723..daec011255860c8c7ecf412f0a849dcf4c32c9a4 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: test_mailsplit.py,v 1.6 2001-10-21 03:35:13 richard Exp $
+# $Id: test_mailsplit.py,v 1.7 2001-10-23 00:57:32 richard Exp $
 
 import unittest, cStringIO
 
@@ -86,7 +86,6 @@ userfoo@foo.com
     def testParagraphs(self):
         s = '''testing\n\ntesting\n\ntesting'''
         summary, content = parseContent(s)
-        print `summary`, `content`
         self.assertEqual(summary, 'testing')
         self.assertEqual(content, 'testing\n\ntesting\n\ntesting')
 
@@ -102,6 +101,9 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.6  2001/10/21 03:35:13  richard
+# bug #473125: Paragraph in e-mails
+#
 # Revision 1.5  2001/08/07 00:24:43  richard
 # stupid typo
 #