From 58fc614fb71a988239b9cbefbfdc6a2fe597e748 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Mon, 30 Jun 2025 00:12:42 -0700 Subject: [PATCH] fix test --- meshtastic/tests/test_main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshtastic/tests/test_main.py b/meshtastic/tests/test_main.py index 235829d..67379c8 100644 --- a/meshtastic/tests/test_main.py +++ b/meshtastic/tests/test_main.py @@ -1738,7 +1738,8 @@ position_broadcast_smart: true fixed_position: true position_flags: 35""" export_config(mo) - out, err = capsys.readouterr() + out = export_config(mo) + err = "" # ensure we do not output this line assert not re.search(r"Connected to radio", out, re.MULTILINE)