From 0c9867be908416b4ed364340cafdb9c08e563d69 Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti <Flavio.Tarsetti@idiap.ch> Date: Mon, 14 Mar 2016 14:45:58 +0100 Subject: [PATCH] [attestations] update tests for attestations --- beat/web/attestations/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beat/web/attestations/tests.py b/beat/web/attestations/tests.py index 28367c3c5..28e0e2cb0 100644 --- a/beat/web/attestations/tests.py +++ b/beat/web/attestations/tests.py @@ -590,7 +590,7 @@ class CleanAttstationManagementCommandTestCase(AttestationsAPIBase): def test_outdated_attestation(self): experiment = Experiment.objects.all()[0] attestation = Attestation.objects.create_attestation(experiment) - attestation.expiration_date = attestation.expiration_date - timedelta(days=100) + attestation.expiration_date = attestation.expiration_date - timedelta(days=200) attestation.save() command_output = self.run_command() self.assertEqual(command_output, '1 attestation(s) successfully cleaned') -- GitLab