Skip to content

Commit

Permalink
tcptest: Fix wrong variable type in in print() call
Browse files Browse the repository at this point in the history
Change-Id: Icc6e5afc8301276e253489623cad32cbdb2eac0b
Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
  • Loading branch information
lpereira committed Nov 30, 2016
1 parent 02ba99c commit 740318e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcptest.py
Expand Up @@ -88,7 +88,7 @@ def log(msg):
if len(rcvd_bytes) != len(current_n_bytes):
rx_errors += 1
log("Got back %d bytes instead of %d. Will send again" % (
rcvd_bytes, len(current_n_bytes)
len(rcvd_bytes), len(current_n_bytes)
))
continue

Expand Down

0 comments on commit 740318e

Please sign in to comment.