Skip to content

Commit

Permalink
Attempt to fix signedness error on Darwin CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lpbeliveau-silabs committed Oct 17, 2023
1 parent 7e5a35e commit c2468b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/tests/suites/certification/Test_TC_S_2_3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ tests:
arguments:
values:
- name: "arg1"
value: maxScenes - 1
value: maxScenes - 0x0001
- name: "arg2"
value: 0
response:
values:
- name: "returnValue"
saveAs: maxScenesMinusOne
value: maxScenes - 1
value: maxScenes - 0x0001

- label: "Arithmetic operation to get the fabric Capacity"
cluster: "Unit Testing"
Expand Down

0 comments on commit c2468b7

Please sign in to comment.