Fix tests.

Use only test properties to avoid local config interference.

See #21
This commit is contained in:
Mark Paluch
2023-01-09 11:17:31 +01:00
parent aa5eff3d3f
commit 12faafa9ae
2 changed files with 6 additions and 5 deletions

View File

@@ -21,6 +21,6 @@ import org.springframework.test.context.ActiveProfiles;
/**
* @author Oliver Gierke
*/
@ActiveProfiles({ "local", "test" })
@ActiveProfiles({ "test" })
@SpringBootTest(classes = Application.class)
public abstract class AbstractIntegrationTests {}