Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration_tests/instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def pull_file(self, remote_path, local_path):
# First copy to a temporary directory because of permissions issues
tmp_path = _get_tmp_path()
self.instance.execute("cp {} {}".format(str(remote_path), tmp_path))
assert self.instance.pull_file(tmp_path, str(local_path)).ok
self.instance.pull_file(tmp_path, str(local_path))

def push_file(self, local_path, remote_path):
# First push to a temporary directory because of permissions issues
Expand Down