From 5a2c40a8ea5cbac96c6645dc028f191f4c951dc9 Mon Sep 17 00:00:00 2001 From: Gavin Cabbage Date: Thu, 19 Sep 2019 08:25:39 -0400 Subject: [PATCH] mariadb workflow port mapping --- .github/workflows/build.yml | 2 +- chiv_integration_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb7066b..b823aad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: mariadb: image: healthcheck/mariadb ports: - - 33066:33066 + - 33066:3306 env: MYSQL_DATABASE: testdb MYSQL_ROOT_PASSWORD: password diff --git a/chiv_integration_test.go b/chiv_integration_test.go index 48a1445..53ff219 100644 --- a/chiv_integration_test.go +++ b/chiv_integration_test.go @@ -271,7 +271,7 @@ func TestArchiver_Archive(t *testing.T) { }, }, { - name: "mariadb happy path csv", + name: "mariadb happy path yaml", driver: "mysql", database: os.Getenv("MARIADB_URL"), setup: "./testdata/mariadb/setup.sql", @@ -291,7 +291,7 @@ func TestArchiver_Archive(t *testing.T) { }, }, { - name: "mariadb happy path csv", + name: "mariadb happy path json", driver: "mysql", database: os.Getenv("MARIADB_URL"), setup: "./testdata/mariadb/setup.sql",