Fixed test case for replace bom
This commit is contained in:
parent
52cc08dd2d
commit
6c6e45157b
@ -22,4 +22,9 @@ class TestBOMUpdateTool(unittest.TestCase):
|
||||
update_tool.replace_bom()
|
||||
|
||||
self.assertFalse(frappe.db.sql("select name from `tabBOM Item` where bom_no=%s", current_bom))
|
||||
self.assertTrue(frappe.db.sql("select name from `tabBOM Item` where bom_no=%s", bom_doc.name))
|
||||
self.assertTrue(frappe.db.sql("select name from `tabBOM Item` where bom_no=%s", bom_doc.name))
|
||||
|
||||
# reverse, as it affects other testcases
|
||||
update_tool.current_bom = bom_doc.name
|
||||
update_tool.new_bom = current_bom
|
||||
update_tool.replace_bom()
|
Loading…
Reference in New Issue
Block a user