mirror of https://github.com/snachodog/mybuddy.git
Update fixtures test data to use correct time zone (default is now UTC).
This commit is contained in:
parent
97c52263e9
commit
1798a493a6
|
@ -2,7 +2,7 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.test import TestCase
|
from django.test import TestCase, override_settings
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
@ -11,6 +11,8 @@ from core import models
|
||||||
from dashboard.templatetags import cards
|
from dashboard.templatetags import cards
|
||||||
|
|
||||||
|
|
||||||
|
# Test file data uses the US/Eastern time zone.
|
||||||
|
@override_settings(TIME_ZONE='US/Eastern')
|
||||||
class TemplateTagsTestCase(TestCase):
|
class TemplateTagsTestCase(TestCase):
|
||||||
fixtures = ['tests_templatetags.json']
|
fixtures = ['tests_templatetags.json']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue