diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a647fad1e8f71e088ff86c2689e40f7cf1286aa..2dbf6c458b676222296f384de529a1adba2bb4ea 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,13 +29,13 @@ before_script:
 # To get Django tests to work you may need to create a settings file using
 # the following DATABASES:
 # 
- DATABASES = {
-        'default': {
-            'ENGINE': 'django.db.backends.mysql',
-            'NAME': 'ppl',
-            'USER': production_secrets['DB_USER'],
-            'PASSWORD': production_secrets['DB_PASSWORD'],
-        }
+DATABASES = {
+    'default': {
+        'ENGINE': 'django.db.backends.mysql',
+        'NAME': 'ppl',
+        'USER': production_secrets['DB_USER'],
+        'PASSWORD': production_secrets['DB_PASSWORD'],
+    }
 }
 # and then adding `--settings app.settings.ci` (or similar) to the test command