Skip to content

Commit

Permalink
fix travis pulling details
Browse files Browse the repository at this point in the history
  • Loading branch information
reliveyy committed Apr 17, 2020
1 parent 92623d9 commit 648e3a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_simnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ def expect_banner(child):
banner = open(os.path.dirname(__file__) + "/banner.txt").read()
banner = banner.replace("\n", "\r\n")
child.expect_exact(banner, timeout=500)
print(child.before, end="")
lines = simulate_tty(child.before)
for line in lines:
print(line)
print(child.match, end="")


Expand Down

0 comments on commit 648e3a6

Please sign in to comment.