Account for timezone field in existing forms tests

This commit is contained in:
Christopher C. Wells 2020-02-14 09:48:25 -08:00 committed by Christopher Charbonneau Wells
parent 6433b52bec
commit b54b0facb3
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management import call_command from django.core.management import call_command
from django.test import TestCase from django.test import TestCase, Client as HttpClient
from django.test import Client as HttpClient from django.utils import timezone
from faker import Factory from faker import Factory
@ -31,6 +31,7 @@ class FormsTestCase(TestCase):
'email': 'user@user.user', 'email': 'user@user.user',
'dashboard_refresh_rate': '', 'dashboard_refresh_rate': '',
'language': 'en', 'language': 'en',
'timezone': timezone.get_default_timezone_name(),
'next': '/user/settings/' 'next': '/user/settings/'
} }