Corrections for Travis
diff --git a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
index 8cabf6e..096935f 100644
--- a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
+++ b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
@@ -18,10 +18,10 @@
pass
def test_get_mode_of_payments(self):
- si = frappe.get_all("Sales Invoice", fields=["name", "docstatus"])
+ si = frappe.get_all("Sales Invoice", filters={"company": "_Test Company", "customer": "_Test Customer"}, fields=["name", "docstatus"])
filters = get_filters()
- for invoice in si[:2]:
+ for invoice in si[:-2]:
doc = frappe.get_doc("Sales Invoice", invoice.name)
new_doc = frappe.copy_doc(doc)
new_doc.ignore_pricing_rule = 1
@@ -61,10 +61,10 @@
self.assertTrue('Cash' not in mop.values()[0])
def test_get_mode_of_payments_details(self):
- si = frappe.get_all("Sales Invoice", fields=["name", "docstatus"])
+ si = frappe.get_all("Sales Invoice", filters={"company": "_Test Company", "customer": "_Test Customer"}, fields=["name", "docstatus"])
filters = get_filters()
- for invoice in si[:2]:
+ for invoice in si[:-2]:
doc = frappe.get_doc("Sales Invoice", invoice.name)
new_doc = frappe.copy_doc(doc)
new_doc.insert()