Skip to content

Commit 58fc614

Browse files
committed
fix test
1 parent 795b652 commit 58fc614

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

meshtastic/tests/test_main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,8 @@ def test_main_export_config(capsys):
17381738
fixed_position: true
17391739
position_flags: 35"""
17401740
export_config(mo)
1741-
out, err = capsys.readouterr()
1741+
out = export_config(mo)
1742+
err = ""
17421743

17431744
# ensure we do not output this line
17441745
assert not re.search(r"Connected to radio", out, re.MULTILINE)

0 commit comments

Comments
 (0)