From e18cc22ed9c95d39fcd153ad1725df43623a123d Mon Sep 17 00:00:00 2001
From: Joas Schilling <coding@schilljs.com>
Date: Tue, 5 Mar 2019 09:28:36 +0100
Subject: [PATCH] Fix database configuration

Signed-off-by: Joas Schilling <coding@schilljs.com>
---
 autotest.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/autotest.sh b/autotest.sh
index f0ceca62b40..974573a4c76 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -229,9 +229,9 @@ function execute_tests {
 				-e MYSQL_USER="$DATABASEUSER" \
 				-e MYSQL_PASSWORD=owncloud \
 				-e MYSQL_DATABASE="$DATABASENAME" \
-				-d mysql:5.7
-				--innodb_large_prefix=true
-				--innodb_file_format=barracuda
+				-d mysql:5.7 \
+				--innodb_large_prefix=true \
+				--innodb_file_format=barracuda \
 				--innodb_file_per_table=true)
 
 			DATABASEHOST=$(docker inspect --format="{{.NetworkSettings.IPAddress}}" "$DOCKER_CONTAINER_ID")
-- 
GitLab