Skip to content

Commit

Permalink
Use a real timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
guberti committed Jul 26, 2022
1 parent de282cd commit 1ba70ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/micro/arduino/test_arduino_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def uploaded_project(compiled_project):
def serial_output(uploaded_project):
transport = uploaded_project.transport()
transport.open()
out = transport.read(2048, -1)
out = transport.read(2048, 60)
out_str = out.decode("utf-8")
out_lines = out_str.split("\r\n")

Expand Down

0 comments on commit 1ba70ed

Please sign in to comment.