Skip to content

Commit

Permalink
Merge cad3271 into a4125c6
Browse files Browse the repository at this point in the history
  • Loading branch information
Shulyaka committed Apr 11, 2021
2 parents a4125c6 + cad3271 commit 0b25c2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ def test_remote_at_cmd(app, device):
assert app._api._remote_at_command.call_count == 1
assert app._api._remote_at_command.call_args[0][0] is dev.ieee
assert app._api._remote_at_command.call_args[0][1] == s.nwk
assert app._api._remote_at_command.call_args[0][2] == 0x22
assert app._api._remote_at_command.call_args[0][2] == 0x12
assert app._api._remote_at_command.call_args[0][3] == s.cmd
assert app._api._remote_at_command.call_args[0][4] == s.data

Expand Down
2 changes: 1 addition & 1 deletion zigpy_xbee/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def remote_at_command(
if apply_changes:
options |= 0x02
if encryption:
options |= 0x20
options |= 0x10
dev = self.get_device(nwk=nwk)
return self._api._remote_at_command(dev.ieee, nwk, options, cmd_name, *args)

Expand Down

0 comments on commit 0b25c2e

Please sign in to comment.