From 9cc79ba15923a91bed2385d230ffb0bf129d93a3 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 24 Apr 2025 12:30:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(backend)=20correct=20typo=20in=20W?= =?UTF-8?q?orkerConfig=20parameter=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix minor spelling error in WorkerConfig parameter that had no functional impact but improves code clarity and consistency. --- src/backend/core/tests/recording/worker/test_services.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/core/tests/recording/worker/test_services.py b/src/backend/core/tests/recording/worker/test_services.py index 30997b23..84ec2145 100644 --- a/src/backend/core/tests/recording/worker/test_services.py +++ b/src/backend/core/tests/recording/worker/test_services.py @@ -25,7 +25,7 @@ def config(): return WorkerServiceConfig( output_folder="/test/output", server_configurations={ - "host": "test.livekit.io", + "url": "test.livekit.io", "api_key": "test_key", "api_secret": "test_secret", }, @@ -230,7 +230,7 @@ def test_base_egress_ssl_verification_config(verify_ssl): config = WorkerServiceConfig( output_folder="/test/output", server_configurations={ - "host": "test.livekit.io", + "url": "test.livekit.io", "api_key": "test_key", "api_secret": "test_secret", },