[FIX] hr_timesheet: Remove the comma, because Python thinks it's a tuple and not...
authorStephane Wirtel <stw@openerp.com>
Wed, 13 Jul 2011 13:57:52 +0000 (15:57 +0200)
committerStephane Wirtel <stw@openerp.com>
Wed, 13 Jul 2011 13:57:52 +0000 (15:57 +0200)
bzr revid: stw@openerp.com-20110713135752-lmwyb62ns28wi3z9

addons/hr_timesheet/test/test_hr_timesheet.yml

index 9f63bd6..df3dc85 100644 (file)
 -
   !python {model: hr.sign.in.project}: |
       import time
-      uid = ref('test_timesheet_user1'),
+      uid = ref('test_timesheet_user1')
       new_id = self.create(cr, uid, {'emp_id': ref('hr_employee_fracline1'), 'name': 'Francline', 'server_date': time.strftime('%Y-%m-%d %H:%M:%S'), 'date': time.strftime('%Y-%m-%d 12:%M:%S'), 'state': 'absent'})
       self.sign_in_result(cr, uid, [new_id], context)