File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,8 +138,8 @@ class ClusterTester
138138 // Invoke a command and return the decoded result.
139139 // The `RequestType`, `ResponseType` type-parameters must be of the correct type for the command being invoked.
140140 // Use `app::Clusters::<ClusterName>::Commands::<CommandName>::Type` for the `RequestType` type-parameter to be spec compliant
141- // Use `app::Clusters::<ClusterName>::Commands::<CommandName>::Type::ResponseType` for the `ResponseType` type-parameter to be spec compliant
142- // Will construct the command path using the first path returned by `GetPaths()` on the cluster.
141+ // Use `app::Clusters::<ClusterName>::Commands::<CommandName>::Type::ResponseType` for the `ResponseType` type-parameter to be
142+ // spec compliant Will construct the command path using the first path returned by `GetPaths()` on the cluster.
143143 // @returns `CHIP_ERROR_INCORRECT_STATE` if `GetPaths()` doesn't return a list with one path.
144144 template <typename ResponseType, typename RequestType>
145145 [[nodiscard]] InvokeResult<ResponseType> Invoke (chip::CommandId commandId, const RequestType & request)
@@ -191,7 +191,7 @@ class ClusterTester
191191 // @returns `CHIP_ERROR_INCORRECT_STATE` if `GetPaths()` doesn't return a list with one path.
192192 template <typename T>
193193 [[nodiscard]] std::optional<app::DataModel::ActionReturnStatus> Invoke (chip::CommandId commandId, const T & data,
194- app::CommandHandler * handler = nullptr )
194+ app::CommandHandler * handler = nullptr )
195195 {
196196 VerifyOrReturnError (VerifyClusterPathsValid (), CHIP_ERROR_INCORRECT_STATE);
197197 auto path = mCluster .GetPaths ()[0 ];
You can’t perform that action at this time.
0 commit comments