diff --git a/tests/test_backup.py b/tests/test_backup.py index 97fc679f299188470ec315493518f9e7148418bb..7d734b857a758e811707018fa114b3182b38c570 100755 --- a/tests/test_backup.py +++ b/tests/test_backup.py @@ -32,8 +32,8 @@ def test_ssh(ip): def test_last_backup_is_recent(server): client = socket.gethostname() - path = '/backup/%s/home/current' % client - cmd = 'ssh -o StrictHostKeyChecking=no %s ls -l %s | grep current' % (server, path) + path = '/backup/%s/home/latest' % client + cmd = 'ssh -o StrictHostKeyChecking=no %s ls -l %s | grep latest' % (server, path) status, out = subprocess.getstatusoutput(cmd) if status == 0: date = out.strip().split(' ')[-2]