Skip to content

Commit 1ca8218

Browse files
Fix the var name.
1 parent bfcf1a4 commit 1ca8218

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/tests/run_tv_casting_test.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
364364
if 'Cluster =' in tv_casting_line:
365365
print('SHAO char by char of the Cluster string: ')
366366
result = ''
367-
for char in repr(line):
367+
for char in repr(tv_casting_line):
368368
# print(char)
369369
result += char
370370
print(result)
@@ -383,12 +383,12 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
383383
elif 'Attribute =' in tv_casting_line:
384384
print('SHAO char by char of the Attribute string: ')
385385
result = ''
386-
for char in repr(line):
386+
for char in repr(tv_casting_line):
387387
# print(char)
388388
result += char
389389
print(result)
390390

391-
391+
392392
attribute_value = extract_value_from_string(tv_casting_line)
393393
if attribute_value != ATTRIBUTE_CURRENT_PLAYBACK_STATE:
394394
print('SHAO we entered into the mismatch attribute ID block!!!!')

0 commit comments

Comments
 (0)