diff --git a/tests/integration_tests/instances.py b/tests/integration_tests/instances.py index f30456fc282..e26ee233106 100644 --- a/tests/integration_tests/instances.py +++ b/tests/integration_tests/instances.py @@ -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