Disable timezone support for tests, as the date / time fields' tests use naive datatime objects and fail if it's enabled.

This commit is contained in:
wrwrwr 2013-02-20 17:48:12 +01:00
parent e13798785e
commit 46afcd0e5e

View file

@ -26,6 +26,7 @@ LANGUAGE_CODE = 'de'
MODELTRANSLATION_DEFAULT_LANGUAGE = 'de'
USE_I18N = True
USE_TZ = False
MODELTRANSLATION_AUTO_POPULATE = False
MODELTRANSLATION_FALLBACK_LANGUAGES = ()