Commit b08df68c authored by Klaus Wölfel's avatar Klaus Wölfel

item: check id and parent instead of url in test_Item_getTrackingList_explanation_brain_attribute

Since 8a6c4394 Item_getTrackingList sets
parent and id on brain instead of url.
parent d0310869
......@@ -1114,7 +1114,8 @@ class TestItemScripts(ERP5TypeTestCase):
self.assertEqual('explanation title', history_item.explanation)
self.assertEqual('Sale Packing List Line', history_item.translated_portal_type)
self.assertEqual(1, history_item.quantity)
self.assertEqual(line.absolute_url(), history_item.url)
self.assertEqual(line.getId(), history_item.getId())
self.assertEqual(line.getParentValue(), history_item.getParentValue())
self.assertEqual((), history_item.variation_category_item_list)
self.assertEqual('Delivered', history_item.simulation_state)
......
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