[pypy-svn] r46197 - pypy/branch/pypy-more-rtti-inprogress/module/posix/test

fijal at codespeak.net fijal at codespeak.net
Thu Aug 30 16:05:50 CEST 2007


Author: fijal
Date: Thu Aug 30 16:05:49 2007
New Revision: 46197

Modified:
   pypy/branch/pypy-more-rtti-inprogress/module/posix/test/test_posix2.py
Log:
Damn. Make this check anything. Thanks xoraxax


Modified: pypy/branch/pypy-more-rtti-inprogress/module/posix/test/test_posix2.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/module/posix/test/test_posix2.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/module/posix/test/test_posix2.py	Thu Aug 30 16:05:49 2007
@@ -270,8 +270,8 @@
 
     def test_os_getuid(self):
         os = self.posix
-        os.getuid() == self.getuid
-        os.geteuid() == self.geteuid
+        assert os.getuid() == self.getuid
+        assert os.geteuid() == self.geteuid
 
     def test_largefile(self):
         os = self.posix



More information about the Pypy-commit mailing list