diff -r f3b14d052798 -r 9428810469a6 devtools/apptest.py --- a/devtools/apptest.py Thu Oct 01 08:49:29 2009 +0200 +++ b/devtools/apptest.py Thu Oct 01 09:41:26 2009 +0200 @@ -226,7 +226,7 @@ def pviews(self, req, rset): return sorted((a.id, a.__class__) for a in self.vreg['views'].possible_views(req, rset=rset)) - def pactions(self, req, rset, skipcategories=('addrelated', 'siteactions', 'useractions')): + def pactions(self, req, rset, skipcategories=('addrelated', 'siteactions', 'useractions', 'footer')): return [(a.id, a.__class__) for a in self.vreg['actions'].possible_vobjects(req, rset=rset) if a.category not in skipcategories]