Skip to content

Commit 0300413

Browse files
Added additional comments to clarify the constants VENDOR_ID, PRODUCT_ID, and DEVICE_TYPE.
Updated the run command in the workflow yaml file.
1 parent df622f0 commit 0300413

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/examples-linux-tv-casting-app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Test casting from Linux tv-casting-app to Linux tv-app
6767
run: |
6868
./scripts/run_in_build_env.sh \
69-
"python3 ./scripts/tests/run_tv_casting_test.py test-casting"
69+
"python3 ./scripts/tests/run_tv_casting_test.py"
7070
timeout-minutes: 1
7171

7272
- name: Uploading Size Reports

scripts/tests/run_tv_casting_test.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636

3737
# Values that identify the Linux tv-app and are noted in the 'Device Configuration' in the Linux tv-app output
3838
# as well as under the 'Discovered Commissioner' details in the Linux tv-casting-app output.
39-
VENDOR_ID = 65521
40-
PRODUCT_ID = 32769
41-
DEVICE_TYPE = 35
39+
VENDOR_ID = 65521 # Test vendor id
40+
PRODUCT_ID = 32769 # Test product id
41+
DEVICE_TYPE = 35 # Casting video player
4242

4343

4444
class LogFileManager:

0 commit comments

Comments
 (0)