aboutsummaryrefslogtreecommitdiff
path: root/tests/test-integration-recording-device-workflow.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-03 08:51:41 -0600
committerCraig Jennings <c@cjennings.net>2026-02-03 08:51:47 -0600
commit45dd5ce7ae0c637b50567da62b4e4b60626ef7a7 (patch)
treec0c8b674819a98aa4f0053c9e821113389068e05 /tests/test-integration-recording-device-workflow.el
parentc9737916c45b5efc6ada7ce1041f01530196790a (diff)
downloaddotemacs-45dd5ce7ae0c637b50567da62b4e4b60626ef7a7.tar.gz
dotemacs-45dd5ce7ae0c637b50567da62b4e4b60626ef7a7.zip
fix(video-recording): use generic 'Built-in Audio' label
Renamed 'Built-in Laptop Audio' to 'Built-in Audio' since PCI audio devices are used on both laptops and desktops.
Diffstat (limited to 'tests/test-integration-recording-device-workflow.el')
-rw-r--r--tests/test-integration-recording-device-workflow.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-integration-recording-device-workflow.el b/tests/test-integration-recording-device-workflow.el
index ba92d7003..3ef631f36 100644
--- a/tests/test-integration-recording-device-workflow.el
+++ b/tests/test-integration-recording-device-workflow.el
@@ -76,7 +76,7 @@ Validates:
(should (= 3 (length grouped)))
;; Validate built-in device
- (let ((built-in (assoc "Built-in Laptop Audio" grouped)))
+ (let ((built-in (assoc "Built-in Audio" grouped)))
(should built-in)
(should (string-prefix-p "alsa_input.pci" (cadr built-in)))
(should (string-prefix-p "alsa_output.pci" (cddr built-in))))
@@ -160,7 +160,7 @@ Validates:
;; Group returns only 1 complete device
(let ((grouped (cj/recording-group-devices-by-hardware)))
(should (= 1 (length grouped)))
- (should (equal "Built-in Laptop Audio" (caar grouped))))))))
+ (should (equal "Built-in Audio" (caar grouped))))))))
;;; Edge Cases - Bluetooth MAC Normalization