From 5e1162d65e81158be477d118657bf3c784bc7059 Mon Sep 17 00:00:00 2001 From: jgreenstevens Date: Fri, 22 Nov 2024 17:27:36 +0000 Subject: [PATCH] Integration test db var --- .../beekeeper/integration/BeekeeperIntegrationTestBase.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beekeeper-integration-tests/src/test/java/com/expediagroup/beekeeper/integration/BeekeeperIntegrationTestBase.java b/beekeeper-integration-tests/src/test/java/com/expediagroup/beekeeper/integration/BeekeeperIntegrationTestBase.java index 6967cbb4..1a48ed94 100644 --- a/beekeeper-integration-tests/src/test/java/com/expediagroup/beekeeper/integration/BeekeeperIntegrationTestBase.java +++ b/beekeeper-integration-tests/src/test/java/com/expediagroup/beekeeper/integration/BeekeeperIntegrationTestBase.java @@ -86,6 +86,7 @@ public abstract class BeekeeperIntegrationTestBase { private static final String BEEKEEPER_FLYWAY_TABLE = "flyway_schema_history"; private static final String BEEKEEPER_HOUSEKEEPING_PATH_TABLE_NAME = "housekeeping_path"; private static final String BEEKEEPER_HOUSEKEEPING_METADATA_TABLE_NAME = "housekeeping_metadata"; + private static final String BEEKEEPER_HISTORY_TABLE_NAME = "beekeeper_history"; // FIELDS TO INSERT INTO BEEKEEPER TABLES private Long id = 1L; @@ -148,6 +149,7 @@ public void dropMySQLTables() throws SQLException { mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_FLYWAY_TABLE); mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HOUSEKEEPING_PATH_TABLE_NAME); mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HOUSEKEEPING_METADATA_TABLE_NAME); + mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HISTORY_TABLE_NAME); } protected void insertUnreferencedPath(String path) throws SQLException {