[Python-checkins] python/dist/src/Lib/test test_textwrap.py,1.5,1.6

gward@users.sourceforge.net gward@users.sourceforge.net
Thu, 22 Aug 2002 11:57:28 -0700


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

Modified Files:
	test_textwrap.py 
Log Message:
Rename base test case class to (yawn) BaseTestCase.


Index: test_textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_textwrap.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** test_textwrap.py	22 Aug 2002 18:55:38 -0000	1.5
--- test_textwrap.py	22 Aug 2002 18:57:26 -0000	1.6
***************
*** 15,19 ****
  
  
! class WrapperTestCase(unittest.TestCase):
      '''Parent class with utility methods for textwrap tests.'''
  
--- 15,19 ----
  
  
! class BaseTestCase(unittest.TestCase):
      '''Parent class with utility methods for textwrap tests.'''
  
***************
*** 39,43 ****
  
  
! class WrapTestCase(WrapperTestCase):
  
      def setUp(self):
--- 39,43 ----
  
  
! class WrapTestCase(BaseTestCase):
  
      def setUp(self):
***************
*** 164,168 ****
  
  
! class IndentTestCases(WrapperTestCase):
  
      # called before each test method
--- 164,168 ----
  
  
! class IndentTestCases(BaseTestCase):
  
      # called before each test method