tests/test-hook
changeset 2221 05b6c13f43c6
parent 2164 cbd458228a96
child 2227 4f072bb06e89
--- a/tests/test-hook
+++ b/tests/test-hook
@@ -100,14 +100,13 @@ def printargs(args):
     print 'hook args:'
     for k, v in a:
        print ' ', k, v
-    return True
 
 def passhook(**args):
     printargs(args)
-    return True
 
 def failhook(**args):
     printargs(args)
+    return True
 
 class LocalException(Exception):
     pass