mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
fix: failing test case
This commit is contained in:
@@ -49,7 +49,10 @@ class TestAccountBalance(unittest.TestCase):
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
self.assertEqual(expected_data, report[1])
|
expected_data = sorted(expected_data, key=lambda k:k['account'])
|
||||||
|
output = sorted(report[1], key=lambda k:k['account'])
|
||||||
|
|
||||||
|
self.assertEqual(expected_data, output)
|
||||||
|
|
||||||
def make_sales_invoice():
|
def make_sales_invoice():
|
||||||
frappe.set_user("Administrator")
|
frappe.set_user("Administrator")
|
||||||
|
|||||||
Reference in New Issue
Block a user