diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-06 13:51:36 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-06 16:20:45 -0600 |
| commit | e9cbe22d373980460f48941275f2bf15ff1df9e7 (patch) | |
| tree | 514651fad6da47bb9070251919cc1a3b90fc0754 /tests/test-video-audio-recording-modeline-indicator.el | |
| parent | 999c0a0299f46b74ae0346dfedb04b6b3ae5d525 (diff) | |
| download | dotemacs-e9cbe22d373980460f48941275f2bf15ff1df9e7.tar.gz dotemacs-e9cbe22d373980460f48941275f2bf15ff1df9e7.zip | |
fix(test): add missing testutil require for sanitize-org-body tests
Diffstat (limited to 'tests/test-video-audio-recording-modeline-indicator.el')
| -rw-r--r-- | tests/test-video-audio-recording-modeline-indicator.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-video-audio-recording-modeline-indicator.el b/tests/test-video-audio-recording-modeline-indicator.el index f717af7f..88694cff 100644 --- a/tests/test-video-audio-recording-modeline-indicator.el +++ b/tests/test-video-audio-recording-modeline-indicator.el @@ -45,7 +45,7 @@ (let ((fake-process (make-process :name "test-audio" :command '("sleep" "1000")))) (setq cj/audio-recording-ffmpeg-process fake-process) (let ((result (cj/recording-modeline-indicator))) - (should (equal " " result))) + (should (equal " 🎤 " result))) (delete-process fake-process)) (test-modeline-indicator-teardown))) @@ -56,7 +56,7 @@ (let ((fake-process (make-process :name "test-video" :command '("sleep" "1000")))) (setq cj/video-recording-ffmpeg-process fake-process) (let ((result (cj/recording-modeline-indicator))) - (should (equal " " result))) + (should (equal " 🎬 " result))) (delete-process fake-process)) (test-modeline-indicator-teardown))) @@ -69,7 +69,7 @@ (setq cj/audio-recording-ffmpeg-process audio-proc) (setq cj/video-recording-ffmpeg-process video-proc) (let ((result (cj/recording-modeline-indicator))) - (should (equal " " result))) + (should (equal " 🎤🎬 " result))) (delete-process audio-proc) (delete-process video-proc)) (test-modeline-indicator-teardown))) @@ -115,7 +115,7 @@ (delete-process dead-proc) (sit-for 0.1) (let ((result (cj/recording-modeline-indicator))) - (should (equal " " result))) + (should (equal " 🎬 " result))) (delete-process alive-proc)) (test-modeline-indicator-teardown))) |
