From b22266b623a9f2815a06a88d038612dbf012bf28 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:56:16 +0200 Subject: [PATCH] parse hms too, refs #21504 --- tests/test_backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_backup.py b/tests/test_backup.py index 7d734b85..264a7049 100755 --- a/tests/test_backup.py +++ b/tests/test_backup.py @@ -37,7 +37,7 @@ def test_last_backup_is_recent(server): status, out = subprocess.getstatusoutput(cmd) if status == 0: date = out.strip().split(' ')[-2] - pdate = datetime.strptime(date, '%Y-%m-%d') + pdate = datetime.strptime(date, '%Y-%m-%d-%HMS') if (datetime.now() - pdate).days > 2: print('Backup is older than 2 days') return False -- GitLab