fix: Remove GL Entry from print
diff --git a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
index 1ec49d1..1c4350f 100644
--- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
+++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
@@ -1017,9 +1017,6 @@
 			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)