Skip to content

Commit

Permalink
Fix send_zcl_command argument formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed May 14, 2024
1 parent 5466ced commit b225168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_driver/mbed/integration_tests/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def send_zcl_command(devCtrl, line):
raise exceptions.UnknownCommand(cluster, command)

try:
req = commandObj(**FormatZCLArguments(args[5:], command))
req = commandObj(**FormatZCLArguments(args[5:], commandObj))
except BaseException:
raise exceptions.UnknownCommand(cluster, command)

Expand Down

0 comments on commit b225168

Please sign in to comment.