Fix the tests with the new license data.

This commit is contained in:
Jake Moshenko 2014-05-29 13:57:57 -04:00
parent 8e6328a5f0
commit 4c1538ca90

View file

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