# HG changeset patch # User Sylvain Thénault # Date 1260270190 -3600 # Node ID 062beb946b7cc6148633856f14f7da3f8b45d297 # Parent 02273e65e1c251da31c3d5712afe3d8d6897e6b8 missing cache key diff -r 02273e65e1c2 -r 062beb946b7c entities/test/unittest_wfobjs.py --- a/entities/test/unittest_wfobjs.py Tue Dec 08 12:02:57 2009 +0100 +++ b/entities/test/unittest_wfobjs.py Tue Dec 08 12:03:10 2009 +0100 @@ -390,7 +390,7 @@ wf = add_wf(self, 'Company') wf.add_state('asleep', initial=True) self.execute('SET X custom_workflow WF WHERE X eid %(x)s, WF eid %(wf)s', - {'wf': wf.eid, 'x': self.member.eid}) + {'wf': wf.eid, 'x': self.member.eid}, 'x') ex = self.assertRaises(ValidationError, self.commit) self.assertEquals(ex.errors, {'custom_workflow': 'workflow isn\'t a workflow for this type'})