test/crossrunner: merge in old Py2vs3 compat.py
diff --git a/test/crossrunner/run.py b/test/crossrunner/run.py
index 126b7ec..3ccc6e3 100644
--- a/test/crossrunner/run.py
+++ b/test/crossrunner/run.py
@@ -28,7 +28,6 @@
import sys
import time
-from .compat import str_join
from .report import ExecReporter, SummaryReporter
from .test import TestEntry
from .util import domain_socket_path
@@ -72,7 +71,7 @@
return args
def start(self):
- joined = str_join(' ', self.cmd)
+ joined = ' '.join(self.cmd)
self._log.debug('COMMAND: %s', joined)
self._log.debug('WORKDIR: %s', self.cwd)
self._log.debug('LOGFILE: %s', self.report.logpath)