ipatests: update docstring to reflect changes in FileBackup.restore()

Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
Sergey Orlov
2020-03-09 16:17:13 +01:00
parent fc4c3ac795
commit 888c7ba938
+1 -1
View File
@@ -1974,7 +1974,7 @@ class FileBackup:
host.run_command(['cp', '--preserve=all', filename, self._backup])
def restore(self):
"""Restore file. Can be called multiple times."""
"""Restore file. Can be called only once."""
self._host.run_command(['mv', self._backup, self._filename])
def __enter__(self):