From 530daced5695f59627fed8688d9b5edddc9a3fb6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 28 May 2025 14:36:33 +0100 Subject: [PATCH] ensure record stop contains 'Saved to:' --- tests/test_record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_record.py b/tests/test_record.py index e224059..2970690 100644 --- a/tests/test_record.py +++ b/tests/test_record.py @@ -37,7 +37,7 @@ def test_record_stop(): assert 'Recording is not in progress, cannot stop.' in result.stderr else: assert result.exit_code == 0 - assert 'Recording stopped successfully.' in result.stdout + assert 'Recording stopped successfully. Saved to:' in result.stdout time.sleep(0.5) # Wait for the recording to stop