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 | a72d5015f268e726bbeed9f121d4cb62094f7b06 (patch) | |
| tree | 5555109e35f7a6a3f23dd50a1bbbeb21e180541d /tests/test-video-audio-recording-modeline-indicator.el | |
| parent | 0a4f6da4f20979e0b3c1e808611a0a92ba33eb50 (diff) | |
| download | dotemacs-a72d5015f268e726bbeed9f121d4cb62094f7b06.tar.gz dotemacs-a72d5015f268e726bbeed9f121d4cb62094f7b06.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 f717af7f2..88694cfff 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))) |
