Skip to content

Commit 53f2167

Browse files
committed
test(postgresql): comments to addressing review
1 parent 995b4f0 commit 53f2167

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/postgresql/src/test/java/org/testcontainers/postgresql/PostgreSQLContainerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ void testCustomCredentials() {
133133
) {
134134
postgres.start();
135135

136-
// Validações (Asserts)
136+
// Assertions
137137
assertThat(postgres.getDatabaseName()).isEqualTo("my_db");
138138
assertThat(postgres.getUsername()).isEqualTo("my_user");
139139
assertThat(postgres.getPassword()).isEqualTo("my_secret");
140140

141-
// Valida se a URL de conexão reflete as mudanças
141+
// Verify that the connection URL reflects the changes
142142
String jdbcUrl = postgres.getJdbcUrl();
143143
assertThat(jdbcUrl).contains("/my_db");
144144
}

0 commit comments

Comments
 (0)