[bean] [mandatory] fixes in test cases

This commit is contained in:
Anand Doshi
2013-07-08 19:47:37 +05:30
parent 615701d3ae
commit 3c6d440f09
7 changed files with 13 additions and 8 deletions

View File

@@ -292,7 +292,7 @@ class DocType(TransactionBase):
return obj.doclist
# delete from doclist
obj.doclist = filter(lambda d: d.name not in delete_list, obj.doclist)
obj.doclist = webnotes.doclist(filter(lambda d: d.name not in delete_list, obj.doclist))
# delete from db
webnotes.conn.sql("""\

View File

@@ -59,11 +59,12 @@ class TestSalesOrder(unittest.TestCase):
def create_so(self, so_doclist = None):
if not so_doclist:
so_doclist =test_records[0]
so_doclist = test_records[0]
w = webnotes.bean(copy=so_doclist)
w.insert()
w.submit()
return w
def create_dn_against_so(self, so, delivered_qty=0):