Skip to content

Commit

Permalink
fix(testloadram): Windows assertion error
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-kocka authored and dobairoland committed Nov 29, 2023
1 parent d1610a9 commit cd51bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_esptool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ class TestLoadRAM(EsptoolTestCase):

def verify_output(self, expected_out: List[bytes]):
"""Verify that at least one element of expected_out is in serial output"""
with serial.serial_for_url(arg_port, arg_baud) as p:
with serial.serial_for_url(arg_port, arg_baud, rtscts=True) as p:
p.timeout = 5
output = p.read(100)
print(f"Output: {output}")
Expand Down

0 comments on commit cd51bbc

Please sign in to comment.