Skip to content

Commit f8311a9

Browse files
committed
chore: remove debugging print statements
1 parent bdda404 commit f8311a9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

helpdesk/helpdesk/doctype/hd_ticket_comment/test_hd_ticket_comment.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,6 @@ def test_if_repeated_notification_sent_on_mention_add(self):
326326
)
327327

328328
agent_comment.insert(ignore_permissions=True)
329-
print(agent_comment)
330329

331330
notifications = frappe.get_all(
332331
"HD Notification",
@@ -336,7 +335,6 @@ def test_if_repeated_notification_sent_on_mention_add(self):
336335
},
337336
fields=["name", "user_to"],
338337
)
339-
print(notifications)
340338
# notification one created should be equal to 1
341339
self.assertEqual(len(notifications), 1)
342340
self.assertEqual(notifications[0].user_to, "[email protected]")
@@ -369,8 +367,6 @@ def test_if_repeated_notification_sent_on_mention_add(self):
369367
},
370368
fields=["user_to"],
371369
)
372-
print("notificationsnow", notifications_updated)
373-
print(agent_comment)
374370

375371
user_emails = {n.user_to for n in notifications_updated}
376372

0 commit comments

Comments
 (0)