[Python-checkins] python/dist/src/Lib/test test_bsddb185.py,1.1,1.2

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 06 May 2003 13:37:58 -0700


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

Modified Files:
	test_bsddb185.py 
Log Message:
don't need to worry about file endianness


Index: test_bsddb185.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_bsddb185.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_bsddb185.py	6 May 2003 20:36:57 -0000	1.1
--- test_bsddb185.py	6 May 2003 20:37:56 -0000	1.2
***************
*** 11,15 ****
      def test_open_existing_hash(self):
          "verify we can open a file known to be a hash v2 file"
-         # do we need to worry about big vs little endian?
          db = bsddb185.hashopen(findfile("185test.db"))
          self.assertEqual(db["1"], "1")
--- 11,14 ----