Skip to content

Commit

Permalink
chore: clean codes
Browse files Browse the repository at this point in the history
  • Loading branch information
hantsy committed Dec 23, 2023
1 parent 9cc2d71 commit 7d22215
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions hibernate-reactive-mutiny-oracle/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
environment:
ORACLE_PASSWORD: password
ORACLE_DATABASE: blogdb
APP_USER: user
APP_USER_PASSWORD: password
APP_USER: testUser
APP_USER_PASSWORD: testPassword
volumes:
- ./data:/var/lib/oracle-xe
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
value="jdbc:oracle://localhost:1521/blogdb"/>
<!-- Credentials -->
<property name="jakarta.persistence.jdbc.user"
value="user"/>
value="testUser"/>
<property name="jakarta.persistence.jdbc.password"
value="password"/>
value="testPassword"/>

<!-- The Vert.x SQL Client connection pool size -->
<property name="hibernate.connection.pool_size"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ static class TestConfig {
@Container
static OracleContainer oracle = new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
.withDatabaseName("blogdb")
.withUsername("user")
.withPassword("password");
.withUsername("testUser")
.withPassword("testPassword");

@Autowired
PostRepository posts;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class TodoRepositoryTest {
@Container
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
.withDatabaseName("blogdb")
.withUsername("user")
.withPassword("password");
.withUsername("testUser")
.withPassword("testPassword");

@DynamicPropertySource
static void registerDynamicProperties(DynamicPropertyRegistry registry) {
Expand Down

0 comments on commit 7d22215

Please sign in to comment.