From 883b3624f1e3af3ca6ca7201a1efa7d85ca2182e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org>
Date: Tue, 7 Apr 2020 15:01:16 +0200
Subject: [PATCH] FIX: typo

---
 .gitlab-ci.yml | 2 +-
 utils/make_db  | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dce5103..cf4b8f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -51,7 +51,7 @@ unittests:
     - echo 'DATABASE_USER_HOST_LIST="%,"' >> .config
     - echo "MYSQL_USER_PASSWORD=$MYSQL_ROOT_PASSWORD" >> .config
     - echo "MYSQL_HOST=mariadb" >> .config
-    - ./utils/make_db restore tests/example.dump.sql
+    - ./utils/make_db restore_db tests/example.dump.sql
     - ./tests/test_utils.sh
 
 # Build a docker image in which tests for this repository can run
diff --git a/utils/make_db b/utils/make_db
index d13decc..e1cdc2f 100755
--- a/utils/make_db
+++ b/utils/make_db
@@ -198,6 +198,5 @@ case $1 in
     "test-connection") test-connection ;;
     "install_db") install_db ;;
     "restore_db") restore_db $2 ;;
-    # "prep_sql") prepare_sql ;;
     *) echo "Unknown action: $1"
 esac
-- 
GitLab