Skip to content

Commit

Permalink
Fix test by making darwin-framework-tool use the same command timeout…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
bzbarsky-apple authored May 28, 2024
1 parent c7b4965 commit 533df0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ModelCommand : public CHIPCommandBridge

/////////// CHIPCommand Interface /////////
CHIP_ERROR RunCommand() override;
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(10); }
chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(20); }

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

Expand Down

0 comments on commit 533df0c

Please sign in to comment.