[Python-checkins] CVS: python/dist/src/Lib/test test_email.py,1.3,1.4

Tim Peters tim_one@users.sourceforge.net
Wed, 03 Oct 2001 23:26:19 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv11557/python/Lib/test

Modified Files:
	test_email.py 
Log Message:
This test relied on hard tab characters, so failed after whitespace
normalization.  Now uses \t in strings instead of hard tabs.


Index: test_email.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_email.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_email.py	2001/10/04 05:36:56	1.3
--- test_email.py	2001/10/04 06:26:17	1.4
***************
*** 272,276 ****
  Content-Transfer-Encoding: 7bit
  X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
!         spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"
  
  ''')
--- 272,276 ----
  Content-Transfer-Encoding: 7bit
  X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
! \tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey"
  
  ''')
***************
*** 802,814 ****
          eq(EMPTYSTRING.join(lines), """\
  Send Ppp mailing list submissions to
!         ppp@zzz.org
  
  To subscribe or unsubscribe via the World Wide Web, visit
!         http://www.zzz.org/mailman/listinfo/ppp
  or, via email, send a message with subject or body 'help' to
!         ppp-request@zzz.org
  
  You can reach the person managing the list at
!         ppp-admin@zzz.org
  
  When replying, please edit your Subject line so it is more specific
--- 802,814 ----
          eq(EMPTYSTRING.join(lines), """\
  Send Ppp mailing list submissions to
! \tppp@zzz.org
  
  To subscribe or unsubscribe via the World Wide Web, visit
! \thttp://www.zzz.org/mailman/listinfo/ppp
  or, via email, send a message with subject or body 'help' to
! \tppp-request@zzz.org
  
  You can reach the person managing the list at
! \tppp-admin@zzz.org
  
  When replying, please edit your Subject line so it is more specific