Skip to content

Commit

Permalink
Fixed missing comma in tests settings MIDDLEWARE_CLASSES. #145
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaccamo committed Jan 4, 2022
1 parent c9f0795 commit cc4c379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
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',
]
Expand Down

0 comments on commit cc4c379

Please sign in to comment.