diff --git a/src/app/tests/suites/TestClusterComplexTypes.yaml b/src/app/tests/suites/TestClusterComplexTypes.yaml index 1118f8b8f51204..79e334d1c982b2 100644 --- a/src/app/tests/suites/TestClusterComplexTypes.yaml +++ b/src/app/tests/suites/TestClusterComplexTypes.yaml @@ -63,7 +63,7 @@ tests: timedInteractionTimeoutMs: 1 # Try to ensure that we are unresponsive for long enough that the timeout # expires. - busyWaitMs: 5 + busyWaitMs: 100 response: error: UNSUPPORTED_ACCESS @@ -81,6 +81,6 @@ tests: timedInteractionTimeoutMs: 1 # Try to ensure that we are unresponsive for long enough that the timeout # expires. - busyWaitMs: 5 + busyWaitMs: 100 response: error: UNSUPPORTED_ACCESS diff --git a/zzz_generated/chip-tool/zap-generated/test/Commands.h b/zzz_generated/chip-tool/zap-generated/test/Commands.h index f47595c3b6210e..573443627cd573 100644 --- a/zzz_generated/chip-tool/zap-generated/test/Commands.h +++ b/zzz_generated/chip-tool/zap-generated/test/Commands.h @@ -42880,10 +42880,10 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::InvokeCommand(mDevices[kIdentityAlpha], this, success, failure, endpoint, request, 1)); { using namespace chip::System::Clock::Literals; - // Busy-wait for 5 milliseconds. + // Busy-wait for 100 milliseconds. auto & clock = chip::System::SystemClock(); auto start = clock.GetMonotonicTimestamp(); - while (clock.GetMonotonicTimestamp() - start < 5_ms) + while (clock.GetMonotonicTimestamp() - start < 100_ms) ; } return CHIP_NO_ERROR; @@ -42940,10 +42940,10 @@ class TestClusterComplexTypes : public TestCommand chip::Controller::InvokeCommand(mDevices[kIdentityAlpha], this, success, failure, endpoint, request, 1)); { using namespace chip::System::Clock::Literals; - // Busy-wait for 5 milliseconds. + // Busy-wait for 100 milliseconds. auto & clock = chip::System::SystemClock(); auto start = clock.GetMonotonicTimestamp(); - while (clock.GetMonotonicTimestamp() - start < 5_ms) + while (clock.GetMonotonicTimestamp() - start < 100_ms) ; } return CHIP_NO_ERROR;