Skip to content

Commit eaa06d1

Browse files
Fix restyle error.
1 parent 8dfec8f commit eaa06d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/tests/run_tv_casting_test.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def validate_commissioning_success(tv_casting_app_info: Tuple[subprocess.Popen,
312312

313313
def parse_tv_app_output_for_launchUrl_msg_success(tv_app_info: Tuple[subprocess.Popen, TextIO], log_paths: List[str]):
314314
"""Parse the Linux tv-app output for the relevant string indicating that the launchUrl was received."""
315-
315+
316316
tv_app_process, linux_tv_app_log_file = tv_app_info
317317

318318
start_wait_time = time.time()
@@ -338,7 +338,7 @@ def parse_tv_app_output_for_launchUrl_msg_success(tv_app_info: Tuple[subprocess.
338338

339339
def parse_tv_casting_app_output_for_launchUrl_msg_success(tv_casting_app_info: Tuple[subprocess.Popen, TextIO], log_paths: List[str]):
340340
"""Parse the Linux tv-casting-app output for relevant strings indicating that the launchUrl was sent."""
341-
341+
342342
tv_casting_app_process, linux_tv_casting_app_log_file = tv_casting_app_info
343343

344344
continue_parsing_invoke_response_msg_block = False
@@ -447,10 +447,10 @@ def test_commissioning_fn(valid_discovered_commissioner_number, tv_casting_app_i
447447

448448
def test_launchUrl_fn(tv_casting_app_info: Tuple[subprocess.Popen, TextIO], tv_app_info: Tuple[subprocess.Popen, TextIO], log_paths: List[str]):
449449
"""Test that the Linux tv-casting-app sent the launchUrl and that the Linux tv-app received the launchUrl."""
450-
450+
451451
if not parse_tv_app_output_for_launchUrl_msg_success(tv_app_info, log_paths):
452452
handle_casting_failure('Testing launchUrl', log_paths)
453-
453+
454454
if not parse_tv_casting_app_output_for_launchUrl_msg_success(tv_casting_app_info, log_paths):
455455
handle_casting_failure('Testing launchUrl', log_paths)
456456

0 commit comments

Comments
 (0)