Skip to content

Commit

Permalink
Do not convert config multiple times in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Aug 5, 2024
1 parent 4587d33 commit 09fbaa0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@
import zigpy_zigate.types as t
import zigpy_zigate.zigbee.application

APP_CONFIG = zigpy_zigate.zigbee.application.ControllerApplication.SCHEMA(
{
config.CONF_DEVICE: {config.CONF_DEVICE_PATH: "/dev/null"},
config.CONF_DATABASE: None,
}
)
APP_CONFIG = {
config.CONF_DEVICE: {config.CONF_DEVICE_PATH: "/dev/null"},
config.CONF_DATABASE: None,
}
FAKE_FIRMWARE_VERSION = "3.1z"


Expand Down

0 comments on commit 09fbaa0

Please sign in to comment.