1 parent 14ade6f commit d848a3fCopy full SHA for d848a3f
2 files changed
.gitignore
@@ -193,3 +193,5 @@ cython_debug/
193
.cursorignore
194
.cursorindexingignore
195
.vscode/tasks.json
196
+
197
+.github/mcp.json
custom_components/victron_mqtt/_vendor/victron_mqtt/testing/hub_helpers.py
@@ -72,7 +72,8 @@ async def _async_noop(_self: Any) -> None:
72
keepalive_patch.start()
73
74
try:
75
- with patch("victron_mqtt.hub.mqtt.Client") as mock_client:
+ hub_module = Hub.__module__
76
+ with patch(f"{hub_module}.mqtt.Client") as mock_client:
77
hub = Hub(
78
host="localhost",
79
port=1883,
0 commit comments