fix: Debug Test
diff --git a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
index 07f9b42..8bb9d7d 100644
--- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
+++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
@@ -1016,6 +1016,9 @@
 			where voucher_type='Purchase Invoice' and voucher_no=%s
 			order by account asc""", (purchase_invoice.name), as_dict=1)
 
+		for gle in gl_entries:
+			print(gle.account, gle.debit, gle.credit)
+
 		for i, gle in enumerate(gl_entries):
 			self.assertEqual(expected_gle[i][0], gle.account)
 			self.assertEqual(expected_gle[i][1], gle.debit)