Fixed missing comma in tests settings MIDDLEWARE_CLASSES. #145

This commit is contained in:
Fabio Caccamo
2022-01-04 18:16:53 +01:00
parent c9f0795a95
commit cc4c379465
+1 -1
View File
@@ -40,7 +40,7 @@ INSTALLED_APPS += [
if django.VERSION < (2, 0):
MIDDLEWARE_CLASSES = [
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware'
'django.contrib.messages.middleware.MessageMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
]