Better document how to specify a port when using TCP connection

Fixes #868

Also, fix a pylint complaint.
This commit is contained in:
Ian McEwen committed 2026-06-25 14:46:45 -07:00
1 parent 7fc69e957c
commit 990ecc2350
2 files changed
+4 -2

No files matched your search

+1 -1
View File
@@ -3157,7 +3157,7 @@ def test_main_ota_update_file_not_found(capsys):
assert pytest_wrapped_e.type == SystemExit
assert pytest_wrapped_e.value.code == 1
out, err = capsys.readouterr()
out, _ = capsys.readouterr()
assert "OTA firmware file not found" in out
assert "/nonexistent/firmware.bin" in out