aboutsummaryrefslogtreecommitdiff
path: root/tests/test-video-audio-recording-ffmpeg-functions.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-video-audio-recording-ffmpeg-functions.el')
-rw-r--r--tests/test-video-audio-recording-ffmpeg-functions.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-video-audio-recording-ffmpeg-functions.el b/tests/test-video-audio-recording-ffmpeg-functions.el
index 4b3570a2..3a38d00a 100644
--- a/tests/test-video-audio-recording-ffmpeg-functions.el
+++ b/tests/test-video-audio-recording-ffmpeg-functions.el
@@ -164,8 +164,8 @@
(should update-called)))
(test-ffmpeg-teardown)))
-(ert-deftest test-video-audio-recording-ffmpeg-record-audio-normal-creates-m4a-file ()
- "Test that audio recording creates .m4a file."
+(ert-deftest test-video-audio-recording-ffmpeg-record-audio-normal-creates-flac-file ()
+ "Test that audio recording creates .flac file."
(test-ffmpeg-setup)
(unwind-protect
(let ((command nil))
@@ -176,7 +176,7 @@
((symbol-function 'cj/recording--validate-system-audio)
(lambda () nil)))
(cj/ffmpeg-record-audio audio-recordings-dir)
- (should (string-match-p "\\.m4a" command))))
+ (should (string-match-p "\\.flac" command))))
(test-ffmpeg-teardown)))
;;; Stop Functions - Normal Cases