diff --git a/tests/settings.py b/tests/settings.py index 63e7d29..bb93f37 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -3,14 +3,14 @@ DEBUG = True -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = "t)c0g-tbhgoe2ybv4(iyj%!07*si)co@rg21f&ejm3v=)u^_-8" +SECRET_KEY = "ThisIsASecretKeyThatIsOnlyUsedForUnitTestingAndNotForAnyDeployedEnvironments" DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}} ROOT_URLCONF = "katka.urls" -FIELD_ENCRYPTION_KEY = "SURdYnt6gHdgq84TgewXS6WayBQYlHt9Lr8Sryv9yOI=" +FIELD_ENCRYPTION_KEY = "OnlyUsedForUnitTestingNotForProdEnvironment=" + INSTALLED_APPS = [ "django.contrib.auth",