diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e012ff..af63ef1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,7 @@ connect: image: mysql:latest script: - apt-get update && apt-get --assume-yes install mysql-client - - mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql -e "show databases; use $MYSQL_DATABASE_NAME; show tables;" + - mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql -e "show databases; use $MYSQL_DATABASE; show tables;" test: stage: test diff --git a/build.gradle.kts b/build.gradle.kts index d565847..bc11d04 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -26,8 +26,8 @@ dependencies { testImplementation("org.springframework.boot:spring-boot-starter-test") { exclude(group = "org.junit.vintage", module = "junit-vintage-engine") } - testCompile("junit:junit:4.13") - testCompile("org.jetbrains.kotlin:kotlin-test-junit5:1.3.72") + testImplementation("junit:junit:4.13") + testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:1.3.72") }