Skip to content

Commit cb978d8

Browse files
authored
Fix a typo in TestQrCode that prevents the QRCode Tests tasks to run properly (project-chip#879)
1 parent 9be6f66 commit cb978d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "QRCode Tests",
99
"type": "cppdbg",
1010
"request": "launch",
11-
"program": "${workspaceFolder}/build/default/src/setup_payload/tests/TestQrCode",
11+
"program": "${workspaceFolder}/build/default/src/setup_payload/tests/TestQRCode",
1212
"args": [],
1313
"stopAtEntry": false,
1414
"cwd": "${workspaceFolder}",

scripts/tests/qrcode_payload_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
make V=1 -C build/default/src/setup_payload/tests/ TestQrCode
3+
make V=1 -C build/default/src/setup_payload/tests/ TestQRCode

0 commit comments

Comments
 (0)