Skip to content

Commit 46e400c

Browse files
restyled-commitsLyudmilaKostanyan
authored andcommitted
Restyled by clang-format
1 parent 048e741 commit 46e400c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/clusters/testing/ClusterTester.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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];

0 commit comments

Comments
 (0)