Skip to content

Commit 5fe3c87

Browse files
author
Richard Jones
committed
fixes for new signature url quoting
1 parent b8fcfb6 commit 5fe3c87

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/test_mailgw.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# but WITHOUT ANY WARRANTY; without even the implied warranty of
99
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1010
#
11-
# $Id: test_mailgw.py,v 1.42 2003-03-24 04:47:44 richard Exp $
11+
# $Id: test_mailgw.py,v 1.43 2003-04-10 05:11:58 richard Exp $
1212

1313
import unittest, cStringIO, tempfile, os, shutil, errno, imp, sys, difflib
1414
import rfc822
@@ -224,7 +224,7 @@ def testNewIssueAuthMsg(self):
224224
title: Testing...
225225
_______________________________________________________________________
226226
Roundup issue tracker <[email protected]>
227-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
227+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
228228
_______________________________________________________________________
229229
''')
230230

@@ -277,7 +277,7 @@ def testSimpleFollowup(self):
277277
status: unread -> chatting
278278
_______________________________________________________________________
279279
Roundup issue tracker <[email protected]>
280-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
280+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
281281
_______________________________________________________________________
282282
''')
283283

@@ -328,7 +328,7 @@ def testFollowup(self):
328328
status: unread -> chatting
329329
_______________________________________________________________________
330330
Roundup issue tracker <[email protected]>
331-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
331+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
332332
_______________________________________________________________________
333333
''')
334334

@@ -375,7 +375,7 @@ def testFollowupTitleMatch(self):
375375
status: unread -> chatting
376376
_______________________________________________________________________
377377
Roundup issue tracker <[email protected]>
378-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
378+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
379379
_______________________________________________________________________
380380
''')
381381

@@ -422,7 +422,7 @@ def testFollowupNosyAuthor(self):
422422
status: unread -> chatting
423423
_______________________________________________________________________
424424
Roundup issue tracker <[email protected]>
425-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
425+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
426426
_______________________________________________________________________
427427
428428
''')
@@ -471,7 +471,7 @@ def testFollowupNosyRecipients(self):
471471
status: unread -> chatting
472472
_______________________________________________________________________
473473
Roundup issue tracker <[email protected]>
474-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
474+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
475475
_______________________________________________________________________
476476
477477
''')
@@ -520,7 +520,7 @@ def testFollowupNosyAuthorAndCopy(self):
520520
status: unread -> chatting
521521
_______________________________________________________________________
522522
Roundup issue tracker <[email protected]>
523-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
523+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
524524
_______________________________________________________________________
525525
526526
''')
@@ -567,7 +567,7 @@ def testFollowupNoNosyAuthor(self):
567567
status: unread -> chatting
568568
_______________________________________________________________________
569569
Roundup issue tracker <[email protected]>
570-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
570+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
571571
_______________________________________________________________________
572572
573573
''')
@@ -615,7 +615,7 @@ def testFollowupNoNosyRecipients(self):
615615
status: unread -> chatting
616616
_______________________________________________________________________
617617
Roundup issue tracker <[email protected]>
618-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
618+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
619619
_______________________________________________________________________
620620
621621
''')
@@ -723,7 +723,7 @@ def testEnc01(self):
723723
status: unread -> chatting
724724
_______________________________________________________________________
725725
Roundup issue tracker <[email protected]>
726-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
726+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
727727
_______________________________________________________________________
728728
''')
729729

@@ -778,7 +778,7 @@ def testMultipartEnc01(self):
778778
status: unread -> chatting
779779
_______________________________________________________________________
780780
Roundup issue tracker <[email protected]>
781-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
781+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
782782
_______________________________________________________________________
783783
''')
784784

@@ -859,7 +859,7 @@ def testFollowupStupidQuoting(self):
859859
status: unread -> chatting
860860
_______________________________________________________________________
861861
Roundup issue tracker <[email protected]>
862-
http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1
862+
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
863863
_______________________________________________________________________
864864
''')
865865

0 commit comments

Comments
 (0)