From 044077bf0993324b5ec3436b169956c48b19bdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Tue, 16 May 2017 18:53:40 +0200 Subject: [PATCH] fix path, refs #21504 --- tests/test_backup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_backup.py b/tests/test_backup.py index 97fc679f..7d734b85 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] -- GitLab