[FIX] idea: correct selection field values (i.e. strings).
authorVo Minh Thu <vmt@openerp.com>
Tue, 23 Aug 2011 12:46:01 +0000 (14:46 +0200)
committerVo Minh Thu <vmt@openerp.com>
Tue, 23 Aug 2011 12:46:01 +0000 (14:46 +0200)
bzr revid: vmt@openerp.com-20110823124601-5em26jbf4459t0f5

addons/idea/test/test_idea.yml

index 402f93f..4ce9d70 100644 (file)
@@ -56,7 +56,7 @@
 - 
   !python {model: idea.post.vote}: |
     uid2 = ref('test_idea_user1')
-    new_id = self.create(cr, uid2, {'vote': 50}, {"active_ids": [ref("idea_idea_0")]})
+    new_id = self.create(cr, uid2, {'vote': "50"}, {"active_ids": [ref("idea_idea_0")]})
     self.do_vote(cr, uid2, [new_id], {"active_ids": [ref("idea_idea_0")]})
     
 - |
@@ -69,7 +69,7 @@
 -
   !python {model: idea.post.vote}: |
     uid2 = ref('test_idea_user2')
-    new_id = self.create(cr, uid2, {'vote': 100, 'note': 'We can learn many things from technical presentation'}, {"active_ids": [ref("idea_idea_0")]})
+    new_id = self.create(cr, uid2, {'vote': "100", 'note': 'We can learn many things from technical presentation'}, {"active_ids": [ref("idea_idea_0")]})
     self.do_vote(cr, uid2, [new_id], {'active_ids': [ref('idea_idea_0')]})  
         
 - |