Skip to content

Commit 7bdb857

Browse files
committed
fix test
1 parent 80e581e commit 7bdb857

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# A token is used to avoid intermittent spurious job failures caused by rate limiting.
3838
- name: Set up Codecov upload token
3939
run: |
40-
if [[ "${{ github.repository }}" == "arduino-libraries/Arduino_CloudUtils" ]]; then
40+
if [[ "${{ github.repository }}" == "arduino-libraries/Arduino_NetworkConfigurator" ]]; then
4141
# In order to avoid uploads of data from forks, only use the token for runs in the parent repo.
4242
# Token is intentionally exposed.
4343
# See: https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954

extras/test/src/test_provisioning_command_encode.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
{
124124
JWTProvisioningMessage command;
125125
command.c.id = ProvisioningMessageId::JWTProvisioningMessageId;
126+
memset(command.jwt, 0x00, 269);
126127
memset(command.jwt, 0xCA, 268);
127128
uint8_t buffer[512];
128129
size_t bytes_encoded = sizeof(buffer);

0 commit comments

Comments
 (0)