File tree Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ license = {text = "GPL-3.0"}
1515requires-python = " >=3.8"
1616dependencies = [
1717 " voluptuous" ,
18- " zigpy>=0.60.2 " ,
18+ " zigpy>=0.65.3 " ,
1919 ' async-timeout; python_version<"3.11"' ,
2020]
2121
Original file line number Diff line number Diff line change @@ -55,12 +55,10 @@ def api():
5555
5656@pytest .fixture
5757def app (device_path , api ):
58- config = application .ControllerApplication .SCHEMA (
59- {
60- ** ZIGPY_NWK_CONFIG ,
61- zigpy .config .CONF_DEVICE : {zigpy .config .CONF_DEVICE_PATH : device_path },
62- }
63- )
58+ config = {
59+ ** ZIGPY_NWK_CONFIG ,
60+ zigpy .config .CONF_DEVICE : {zigpy .config .CONF_DEVICE_PATH : device_path },
61+ }
6462
6563 app = application .ControllerApplication (config )
6664
@@ -426,12 +424,10 @@ async def test_delayed_scan():
426424 """Delayed scan."""
427425
428426 coord = MagicMock ()
429- config = application .ControllerApplication .SCHEMA (
430- {
431- zigpy .config .CONF_DEVICE : {zigpy .config .CONF_DEVICE_PATH : "usb0" },
432- zigpy .config .CONF_DATABASE : "tmp" ,
433- }
434- )
427+ config = {
428+ zigpy .config .CONF_DEVICE : {zigpy .config .CONF_DEVICE_PATH : "usb0" },
429+ zigpy .config .CONF_DATABASE : "tmp" ,
430+ }
435431
436432 app = application .ControllerApplication (config )
437433 with patch .object (app , "get_device" , return_value = coord ):
You can’t perform that action at this time.
0 commit comments