Commit 221f70c3 authored by Romain Courteaud's avatar Romain Courteaud

Bug fix: use valid accessors name.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6090 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6684d553
...@@ -283,9 +283,9 @@ class TestHR(ERP5TypeTestCase): ...@@ -283,9 +283,9 @@ class TestHR(ERP5TypeTestCase):
""" """
portal_type = 'Organisation' portal_type = 'Organisation'
organisation_module = self.portal.getDefaultModule(portal_type) organisation_module = self.portal.getDefaultModule(portal_type)
organisation = organisation_module.newContent( portal_type = portal_type organisation = organisation_module.newContent(portal_type=portal_type,
, immediate_reindex = 1 immediate_reindex=1,
) title='A new organisation')
sequence.edit(organisation = organisation) sequence.edit(organisation = organisation)
...@@ -627,8 +627,8 @@ class TestHR(ERP5TypeTestCase): ...@@ -627,8 +627,8 @@ class TestHR(ERP5TypeTestCase):
person.Career_shiftDefault() person.Career_shiftDefault()
self.assertEquals( 2, self.assertEquals( 2,
len(person.contentValues(filter={'portal_type':'Career'}))) len(person.contentValues(filter={'portal_type':'Career'})))
person.setDefaultCareerSubordination(other_organisation.getRelativeUrl()) person.setCareerSubordination(other_organisation.getRelativeUrl())
person.setDefaultCareerTitle(new_career_title) person.setCareerTitle(new_career_title)
# Get the new and the old career, as Career_shiftDefault changes # Get the new and the old career, as Career_shiftDefault changes
# objects id, this may be the only safe way ... # objects id, this may be the only safe way ...
......
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