should now use _test_action, not bare action.url() 3.5
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 15 Sep 2009 14:47:58 +0200
branch3.5
changeset 3226 10f4f525044c
parent 3225 464c5b9c6fa0
child 3227 f1695b2da6c3
should now use _test_action, not bare action.url()
devtools/testlib.py
--- a/devtools/testlib.py	Tue Sep 15 14:47:39 2009 +0200
+++ b/devtools/testlib.py	Tue Sep 15 14:47:58 2009 +0200
@@ -333,7 +333,7 @@
             # resultset's syntax tree
             rset = backup_rset
         for action in self.list_actions_for(rset):
-            yield InnerTest(self._testname(rset, action.id, 'action'), action.url)
+            yield InnerTest(self._testname(rset, action.id, 'action'), self._test_action, action)
         for box in self.list_boxes_for(rset):
             yield InnerTest(self._testname(rset, box.id, 'box'), box.render)