From b0f6b068ef01193355c8be6d1b4126b7e2c5d4dc Mon Sep 17 00:00:00 2001 From: tunde Date: Thu, 7 Sep 2017 13:50:46 +0100 Subject: [PATCH] remove test based on deleted `recurring_document.py` --- .../doctype/purchase_invoice/test_purchase_invoice.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py index da91be2856..60f9b3fd13 100644 --- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -306,10 +306,6 @@ class TestPurchaseInvoice(unittest.TestCase): "reference_name=%s", pi.name) ) - def test_recurring_invoice(self): - from erpnext.controllers.tests.test_recurring_document import test_recurring_document - test_recurring_document(self, test_records) - def test_total_purchase_cost_for_project(self): existing_purchase_cost = frappe.db.sql("""select sum(base_net_amount) from `tabPurchase Invoice Item` where project = '_Test Project' and docstatus=1""")