Browse Source

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.
Marek Marczykowski-Górecki 4 years ago
parent
commit
b569f5a2b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubes/tests/firewall.py

+ 1 - 1
qubes/tests/firewall.py

@@ -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)