Skip to content

Commit 533df0c

Browse files
Fix test by making darwin-framework-tool use the same command timeout as chip-tool. (#33633)
The commands now take a bit longer to time out on the exchange level, so we were hitting the test timeout.
1 parent c7b4965 commit 533df0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/darwin-framework-tool/commands/clusters/ModelCommandBridge.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ModelCommand : public CHIPCommandBridge
3838

3939
/////////// CHIPCommand Interface /////////
4040
CHIP_ERROR RunCommand() override;
41-
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(10); }
41+
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(20); }
4242

4343
virtual CHIP_ERROR SendCommand(MTRBaseDevice * _Nonnull device, chip::EndpointId endPointId) = 0;
4444

0 commit comments

Comments
 (0)