From 773bd82216f48040eab20855187785301f4d636c Mon Sep 17 00:00:00 2001 From: bjt-user Date: Sat, 5 Oct 2024 15:47:47 +0200 Subject: [PATCH] tests are looking good for ongoing events --- src/Makefile | 2 +- src/list_handling.c | 2 +- tests/calendar.ics | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile b/src/Makefile index c5cdb90..1895283 100644 --- a/src/Makefile +++ b/src/Makefile @@ -27,7 +27,7 @@ install: $(EXECUTABLE) .PHONY:clean clean: - -rm -f $(EXECUTABLE) *.o + -rm -vf $(EXECUTABLE) *.o .PHONY:uninstall uninstall: diff --git a/src/list_handling.c b/src/list_handling.c index 5ba85ed..fe60124 100644 --- a/src/list_handling.c +++ b/src/list_handling.c @@ -49,7 +49,7 @@ void free_list(struct event *head) void print_upcoming(struct event *head, char current_date[], int show_all_events) { int i = 0; while (head != NULL) { - if (strcmp(head->start_date, current_date) >= 0) { + if (strcmp(head->end_date, current_date) >= 0) { pretty_print_date_time(head->start_date); print_end_date(head->end_date, head->start_date); printf("\nSUMMARY: %s\n", head->summary); diff --git a/tests/calendar.ics b/tests/calendar.ics index 9523ca9..59961e7 100644 --- a/tests/calendar.ics +++ b/tests/calendar.ics @@ -301,9 +301,9 @@ BEGIN:VEVENT UID:ce6cc0e3ca1bb6a22783ace61034b12c57325b4e DTSTAMP:20230719T152822Z DTSTART;TZID=/freeassociation.sourceforge.net/Europe/Berlin: - 20230831T180000 + 20241005T140000 DTEND;TZID=/freeassociation.sourceforge.net/Europe/Berlin: - 20230831T220000 + 20241005T220000 SEQUENCE:3 SUMMARY:dentist TRANSP:OPAQUE