From 0dcd507eae01b8df5d9f5b9f2895de6c2336f72b Mon Sep 17 00:00:00 2001
From: Boris Zbarsky <bzbarsky@apple.com>
Date: Thu, 18 May 2023 14:00:35 -0400
Subject: [PATCH] Increase timeout value for door lock test from 15s to 25s.
 (#26659)

The test has a 10-second wait built in, and it's possible for us to spend more
than 5s running the rest of it, at which point it times out.
---
 src/app/tests/suites/DL_LockUnlock.yaml               | 2 +-
 zzz_generated/chip-tool/zap-generated/test/Commands.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/tests/suites/DL_LockUnlock.yaml b/src/app/tests/suites/DL_LockUnlock.yaml
index a07c8c515c1d53..ed071e49368501 100644
--- a/src/app/tests/suites/DL_LockUnlock.yaml
+++ b/src/app/tests/suites/DL_LockUnlock.yaml
@@ -18,7 +18,7 @@ config:
     nodeId: 0x12344321
     cluster: "Door Lock"
     endpoint: 1
-    timeout: 15
+    timeout: 25
 
 tests:
     - label: "Wait for the commissioned device to be retrieved"
diff --git a/zzz_generated/chip-tool/zap-generated/test/Commands.h b/zzz_generated/chip-tool/zap-generated/test/Commands.h
index 041d664bbcba5c..ab7ca592e76553 100644
--- a/zzz_generated/chip-tool/zap-generated/test/Commands.h
+++ b/zzz_generated/chip-tool/zap-generated/test/Commands.h
@@ -82839,7 +82839,7 @@ class DL_LockUnlockSuite : public TestCommand
 
     ~DL_LockUnlockSuite() {}
 
-    chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr(15)); }
+    chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr(25)); }
 
 private:
     chip::Optional<chip::NodeId> mNodeId;