Commit 7778f0f5 authored by Nicolas Delaby's avatar Nicolas Delaby

Follow new Rules of reference generator.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38408 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5128161b
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2007 Nexedi SA and Contributors. All Rights Reserved.
......@@ -696,7 +697,7 @@ class TestTask(TestTaskMixin, ERP5TypeTestCase):
self.assertEqual(
task.getReference(),
'T %s'%(task.getId(),)
'T-%s'%(task.getId(),)
)
cb_data = task_module.manage_copyObjects(ids=[task.getId()])
......@@ -706,7 +707,7 @@ class TestTask(TestTaskMixin, ERP5TypeTestCase):
self.assertEqual(
new_task.getReference(),
'T %s'%(new_task.getId(),)
'T-%s'%(new_task.getId(),)
)
def test_07_taskConstraints(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment