Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/test_printing_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,12 @@ def test_reprint_uses_saved_payload():


def test_tcp_job_replay_preserves_host_port():
config = PrinterConfig(backend="tspl", transport="tcp", host="192.0.2.10", port=9200)
config = PrinterConfig(
backend="tspl",
transport="tcp",
host="192.0.2.10",
port=9200,
)
printer = Printer(config)
stub = StubTransport()
printer.transport = stub
Expand Down
Loading