Commit 2ed1bb80 authored by Łukasz Nowak's avatar Łukasz Nowak

Update to current code behaviour.

parent ccc9742e
...@@ -548,7 +548,7 @@ class TestConstraint(PropertySheetTestCase): ...@@ -548,7 +548,7 @@ class TestConstraint(PropertySheetTestCase):
SetObjectIntLocalProperty \ SetObjectIntLocalProperty \
CreatePropertyTypeValidity \ CreatePropertyTypeValidity \
CallFixConsistency \ CallFixConsistency \
CheckIfConstraintSucceeded \ CheckIfConstraintFailed \
CallCheckConsistency \ CallCheckConsistency \
CheckIfConstraintSucceeded \ CheckIfConstraintSucceeded \
' '
...@@ -1273,8 +1273,7 @@ class TestConstraint(PropertySheetTestCase): ...@@ -1273,8 +1273,7 @@ class TestConstraint(PropertySheetTestCase):
transaction.commit() transaction.commit()
try: try:
self.assertEqual(sorted([ self.assertEqual(sorted([
'Property default_organisation_title was migrated from local properties.', 'Property default_organisation_title was migrated from local properties.']),
'Property default_organisation_title was modified from foo to None.']),
sorted([str(q.getMessage()) for q in constraint.fixConsistency(obj)])) sorted([str(q.getMessage()) for q in constraint.fixConsistency(obj)]))
self.assertEquals('foo', obj.getDefaultOrganisationTitle()) self.assertEquals('foo', obj.getDefaultOrganisationTitle())
self.assertEquals('foo', obj.default_organisation.getTitle()) self.assertEquals('foo', obj.default_organisation.getTitle())
...@@ -1302,8 +1301,7 @@ class TestConstraint(PropertySheetTestCase): ...@@ -1302,8 +1301,7 @@ class TestConstraint(PropertySheetTestCase):
property_id="testing_category") property_id="testing_category")
# fix consistency # fix consistency
self.assertEqual(sorted([ self.assertEqual(sorted([
'Property testing_category was migrated from local properties.', 'Property testing_category was migrated from local properties.']),
'Property testing_category was modified from organisation_module/%s to None.' % obj.getId()]),
sorted([str(q.getMessage()) for q in constraint.fixConsistency(obj)])) sorted([str(q.getMessage()) for q in constraint.fixConsistency(obj)]))
# now we can use testing_category as any category accessor # now we can use testing_category as any category accessor
self.assertEqual(0, len(obj._local_properties)) self.assertEqual(0, len(obj._local_properties))
......
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