summaryrefslogtreecommitdiff
path: root/tests/test_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_util.py')
-rw-r--r--tests/test_util.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index a945c29..56835a0 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -34,10 +34,7 @@ def cpp_args(args=[]):
return args
def _bytes2str(b):
- if sys.version_info[0] == 3:
- return b.decode('latin-1')
- else:
- return b
+ return b.decode('latin-1')
def run_exe(exe_path, args=[], echo=False):
""" Runs the given executable as a subprocess, given the