diff options
| author | Craig Jennings <c@cjennings.net> | 2026-04-05 06:58:19 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-04-05 06:58:19 -0500 |
| commit | 176053a696e9bd7c0d9bcbd4afdafa4773d52131 (patch) | |
| tree | ceff079d7a8b74ed4d07750a2e355fcc4551a34c /tests/test-calendar-sync.el | |
| parent | ac648a8c43d4dde23d39b9b0a94210e2e0d64a03 (diff) | |
| download | dotemacs-176053a696e9bd7c0d9bcbd4afdafa4773d52131.tar.gz dotemacs-176053a696e9bd7c0d9bcbd4afdafa4773d52131.zip | |
refactor(calendar-sync): remove dead function calendar-sync--timezone-name
Function was defined but never called anywhere in the codebase.
Diffstat (limited to 'tests/test-calendar-sync.el')
| -rw-r--r-- | tests/test-calendar-sync.el | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/test-calendar-sync.el b/tests/test-calendar-sync.el index 144d64868..b912c1328 100644 --- a/tests/test-calendar-sync.el +++ b/tests/test-calendar-sync.el @@ -508,13 +508,7 @@ Valid events should be parsed, invalid ones skipped." (should (>= offset (* -12 3600))) (should (<= offset (* 14 3600))))) -(ert-deftest test-calendar-sync--timezone-name-returns-string () - "Test that timezone name returns a string." - (let ((name (calendar-sync--timezone-name))) - ;; Should be a string - (should (stringp name)) - ;; Should not be empty - (should (> (length name) 0)))) + (ert-deftest test-calendar-sync--format-timezone-offset-handles-negative () "Test formatting negative timezone offsets (west of UTC)." |
