From 70621fd482c770540392f38ea9ecc53549f6ad3b Mon Sep 17 00:00:00 2001 From: Michael Hoennig Date: Thu, 11 Jan 2024 16:49:36 +0100 Subject: [PATCH] always use jdbc:postgresql://localhost:5432/postgres for ImportTestData --- .../hsadminng/hs/office/migration/ImportOfficeTables.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/net/hostsharing/hsadminng/hs/office/migration/ImportOfficeTables.java b/src/test/java/net/hostsharing/hsadminng/hs/office/migration/ImportOfficeTables.java index 50102697..b5c30035 100644 --- a/src/test/java/net/hostsharing/hsadminng/hs/office/migration/ImportOfficeTables.java +++ b/src/test/java/net/hostsharing/hsadminng/hs/office/migration/ImportOfficeTables.java @@ -57,7 +57,7 @@ import static org.assertj.core.api.Assertions.assertThat; */ @Disabled -@DataJpaTest +@DataJpaTest(properties = "spring.datasource.url=jdbc:postgresql://localhost:5432/postgres") @Import({ Context.class, JpaAttempt.class }) @TestMethodOrder(MethodOrderer.OrderAnnotation.class) public class ImportOfficeTables extends ContextBasedTest {