Fix acceptance tests with python3

This commit is contained in:
Alexander Kukushkin
2016-06-16 15:27:41 +02:00
parent fcde17583c
commit 27bdc65e46
+1 -1
View File
@@ -95,7 +95,7 @@ def do_run(context, cmd):
except subprocess.CalledProcessError as e:
response = e.output
context.status_code = e.returncode
context.response = response.strip()
context.response = response.decode('utf-8').strip()
@then('I receive a response {component:w} {data}')