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

Mark Hammond python-dev@python.org
Mon, 14 Aug 2000 16:06:40 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv14044

Modified Files:
	test_ntpath.py 
Log Message:
Remove the test for abspath with an empty path - too hard to do in a cross-platform manner.

Index: test_ntpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_ntpath.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** test_ntpath.py	2000/08/14 06:21:26	1.3
--- test_ntpath.py	2000/08/14 23:06:37	1.4
***************
*** 37,41 ****
  
  tester('ntpath.abspath("C:\\")', "C:\\")
- tester('ntpath.abspath("")', os.getcwd())
  
  
--- 37,40 ----