diff tests/test-trusted.py @ 8657:3fa92c618624

posix: do not use fstat in isowner The fstat function was undefined, but never used since a stat object was always passed in the optional st argument. Passing st is now mandatory. This bug crept in when util was split up into posix and windows modules. The fstat function is still defined in util, but importing it into posix would create an import cycle which seems unnecessary.
author Martin Geisler <mg@lazybytes.net>
date Sat, 30 May 2009 23:42:35 +0200
parents 9b8ac5fb7760
children 543597fae51d
line wrap: on
line diff
--- a/tests/test-trusted.py	Sat May 30 23:20:30 2009 +0200
+++ b/tests/test-trusted.py	Sat May 30 23:42:35 2009 +0200
@@ -44,7 +44,7 @@
         return group
     util.groupname = groupname
 
-    def isowner(fp, st=None):
+    def isowner(st):
         return user == cuser
     util.isowner = isowner