From 4aa0be829df1835384a455312cbb210e9c8c23dd Mon Sep 17 00:00:00 2001 From: jepenven-silabs Date: Tue, 1 Feb 2022 07:31:47 -0500 Subject: [PATCH] fix typo --- src/app/zap-templates/common/ClusterTestGeneration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/zap-templates/common/ClusterTestGeneration.js b/src/app/zap-templates/common/ClusterTestGeneration.js index 9aa179f79232c6..21b15f94dcffad 100644 --- a/src/app/zap-templates/common/ClusterTestGeneration.js +++ b/src/app/zap-templates/common/ClusterTestGeneration.js @@ -178,7 +178,7 @@ function setDefaultTypeForCommand(test) // Only two types of actions can be send to Group : Write attribute, and Commands // Spec : Action 8.2.4 if ((kGroupId in test) && !test.isGroupCommand) { - printErrorAndExit(this, 'Wrong Yaml configuration. Action : ' + test.commandName + " can't be send to group " + test[kGroupId]); + printErrorAndExit(this, 'Wrong Yaml configuration. Action : ' + test.commandName + " can't be sent to group " + test[kGroupId]); } test.isWait = false;