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

Moshe Zadka python-dev@python.org
Fri, 4 Aug 2000 08:26:02 -0700


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

Modified Files:
	test_linuxaudiodev.py 
Log Message:
Oooopsss.....tab and space mismatch corrected.


Index: test_linuxaudiodev.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_linuxaudiodev.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** test_linuxaudiodev.py	2000/08/04 13:26:03	1.3
--- test_linuxaudiodev.py	2000/08/04 15:25:58	1.4
***************
*** 11,16 ****
          a = linuxaudiodev.open('w')
      except linuxaudiodev.error, msg:
! 	if msg[0] in (errno.EACCES, errno.ENODEV):
! 		raise TestSkipped, msg
          raise TestFailed, msg
      else:
--- 11,16 ----
          a = linuxaudiodev.open('w')
      except linuxaudiodev.error, msg:
!         if msg[0] in (errno.EACCES, errno.ENODEV):
!             raise TestSkipped, msg
          raise TestFailed, msg
      else: