Fix syntax error in integration-test.py

This commit is contained in:
yuvipanda
2018-07-11 02:09:38 -07:00
parent f6a5566b42
commit 732ca48887

View File

@@ -71,7 +71,7 @@ def copy_to_container(container_name, src_path, dest_path):
""" """
subprocess.check_call([ subprocess.check_call([
'docker', 'cp', 'docker', 'cp',
src_path, f'{container_name}:{dest_path}'' src_path, f'{container_name}:{dest_path}'
]) ])