From c2468b7ce63a137e20d7bc30f4d159ce016b3381 Mon Sep 17 00:00:00 2001 From: lpbeliveau-silabs Date: Tue, 17 Oct 2023 13:55:25 -0400 Subject: [PATCH] Attempt to fix signedness error on Darwin CI --- src/app/tests/suites/certification/Test_TC_S_2_3.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/tests/suites/certification/Test_TC_S_2_3.yaml b/src/app/tests/suites/certification/Test_TC_S_2_3.yaml index eb1637fdf563cf..9e0a44f3f27339 100644 --- a/src/app/tests/suites/certification/Test_TC_S_2_3.yaml +++ b/src/app/tests/suites/certification/Test_TC_S_2_3.yaml @@ -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"