Skip to content

Commit

Permalink
Fix formatting of mac addresses from dhcp discovery mocking in nest (#…
Browse files Browse the repository at this point in the history
…110584)

dhcp returns addresses in lowercase without :
  • Loading branch information
bdraco authored Feb 14, 2024
1 parent 7b4c5a1 commit 78bc561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/components/nest/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


FAKE_DHCP_DATA = dhcp.DhcpServiceInfo(
ip="127.0.0.2", macaddress="00:11:22:33:44:55", hostname="fake_hostname"
ip="127.0.0.2", macaddress="001122334455", hostname="fake_hostname"
)


Expand Down

0 comments on commit 78bc561

Please sign in to comment.