From dda900416eb30d66f1add0ce09c270cb812cb36b Mon Sep 17 00:00:00 2001 From: devmizz Date: Mon, 22 Jul 2024 01:28:44 +0900 Subject: [PATCH] fix: Update test yml --- .../org/example/repository/artist/ArtistRepositoryTest.java | 2 -- .../{application-show-domain-test.yml => application.yml} | 0 2 files changed, 2 deletions(-) rename app/domain/show-domain/src/test/resources/{application-show-domain-test.yml => application.yml} (100%) diff --git a/app/domain/show-domain/src/test/java/org/example/repository/artist/ArtistRepositoryTest.java b/app/domain/show-domain/src/test/java/org/example/repository/artist/ArtistRepositoryTest.java index 490f86d0..52b28946 100644 --- a/app/domain/show-domain/src/test/java/org/example/repository/artist/ArtistRepositoryTest.java +++ b/app/domain/show-domain/src/test/java/org/example/repository/artist/ArtistRepositoryTest.java @@ -13,10 +13,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase; import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest; -import org.springframework.test.context.ActiveProfiles; @DataJpaTest -@ActiveProfiles("show-domain-test") @AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE) class ArtistRepositoryTest { diff --git a/app/domain/show-domain/src/test/resources/application-show-domain-test.yml b/app/domain/show-domain/src/test/resources/application.yml similarity index 100% rename from app/domain/show-domain/src/test/resources/application-show-domain-test.yml rename to app/domain/show-domain/src/test/resources/application.yml