From 4c1538ca908df5810945e2d26ba498c490c073f7 Mon Sep 17 00:00:00 2001 From: Jake Moshenko Date: Thu, 29 May 2014 13:57:57 -0400 Subject: [PATCH] Fix the tests with the new license data. --- test/testconfig.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/testconfig.py b/test/testconfig.py index 5f03b398b..281278085 100644 --- a/test/testconfig.py +++ b/test/testconfig.py @@ -1,3 +1,5 @@ +from datetime import datetime, timedelta + from config import DefaultConfig from test.testlogs import TestBuildLogs @@ -34,4 +36,6 @@ class TestConfig(DefaultConfig): SUPER_USERS = ['devtable'] LICENSE_USER_LIMIT = 500 + LICENSE_EXPIRATION = datetime.now() + timedelta(weeks=520) + LICENSE_EXPIRATION_WARNING = datetime.now() + timedelta(weeks=520) \ No newline at end of file