tests/firewall: update future time to be really in the future

Mar 4 2020 is no longer future, move it much more into the future.
This commit is contained in:
Marek Marczykowski-Górecki 2020-03-08 16:35:39 +01:00
parent 283d251387
commit b569f5a2b0
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -322,7 +322,7 @@ class TC_06_Expire(qubes.tests.QubesTestCase):
instance = qubes.firewall.Expire('1463292452')
self.assertTrue(instance.expired)
with self.assertNotRaises(ValueError):
instance = qubes.firewall.Expire('1583292452')
instance = qubes.firewall.Expire('2583292452')
self.assertFalse(instance.expired)