aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-03-20 11:56:18 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-03-20 11:54:06 +0100
commit33337eb86028662e632107411efec1e63b1c01bf (patch)
treeac2b32f0b8d2891ce5d781c9d088ab5b3fa7a445
parent50171df26c719c128dfb9c6a288ca7956562ba8e (diff)
test: Fix TypeError in wait_for_debug_log
Traceback: print_log = " - " + "\n - ".join(log.splitlines()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: sequence item 0: expected str instance, bytes found
-rwxr-xr-xtest/functional/test_framework/test_node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index 882f82e0f2..56abe5f26a 100755
--- a/test/functional/test_framework/test_node.py
+++ b/test/functional/test_framework/test_node.py
@@ -469,7 +469,7 @@ class TestNode():
return
if time.time() >= time_end:
- print_log = " - " + "\n - ".join(log.splitlines())
+ print_log = " - " + "\n - ".join(log.decode("utf8", errors="replace").splitlines())
break
# No sleep here because we want to detect the message fragment as fast as