emacs-31 254594306c7: ; Fix unbound variable warning
Sean Whitton <[email protected]>
| Newsgroups | gmane.emacs.diffs |
|---|---|
| Message-ID | <[email protected]> |
branch: emacs-31 commit 254594306c7a20e81172590f759103f4c36d8fb7 Author: Richard Lawrence <[email protected]> Commit: Sean Whitton <[email protected]> ; Fix unbound variable warning * test/lisp/calendar/icalendar-parser-tests.el (icalendar-parser-test-utc+0-is-not-utc): New test using `expected-non-zoned'. --- test/lisp/calendar/icalendar-parser-tests.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/lisp/calendar/icalendar-parser-tests.el b/test/lisp/calendar/icalendar-parser-tests.el index 4b56edb8780..838b129ecee 100644 --- a/test/lisp/calendar/icalendar-parser-tests.el +++ b/test/lisp/calendar/icalendar-parser-tests.el @@ -2057,7 +2057,8 @@ END:VCALENDAR (should-not (ical:date-time-is-utc-p parsed-non-zoned)) ;; but also that `icalendar-date-time-simultaneous-p' does not: (should (ical:date-time-simultaneous-p parsed-utc expected-utc)) - (should (ical:date-time-simultaneous-p parsed-utc parsed-non-zoned)))) + (should (ical:date-time-simultaneous-p parsed-utc parsed-non-zoned)) + (should (ical:date-time-simultaneous-p parsed-non-zoned expected-non-zoned))))