From 4fb8197f9d35409196d8e18750207c54c73b1a29 Mon Sep 17 00:00:00 2001 From: Brent Westbrook Date: Wed, 25 Dec 2024 14:26:11 -0500 Subject: [PATCH] debug prints --- test/test.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.el b/test/test.el index a15ea4e..bcc36cb 100644 --- a/test/test.el +++ b/test/test.el @@ -78,6 +78,7 @@ a post-event cutoff set but the current time set appropriately." ;; just before the notification should trigger (with-current-time (25704 52655 0 0) (let ((org-alert-notify-after-event-cutoff 60)) + (print (current-time-string (current-time))) (org-alert-check) (should (= (length test-alert-notifications) 0)))))) @@ -91,5 +92,6 @@ a post-event cutoff set but the current time set appropriately." (with-test-org "plain.org" (with-current-time (25704 52945 0 0) ; 9:44:49 (should (= (length test-alert-notifications) 0)) + (print (current-time-string (current-time))) (org-alert-check) (should (= (length test-alert-notifications) 0)))))