Skip to content

Commit

Permalink
대소문자
Browse files Browse the repository at this point in the history
  • Loading branch information
DOEKYONG committed Nov 1, 2023
1 parent 10ec169 commit 955e9f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DatabaseCleanup implements InitializingBean {
public void afterPropertiesSet() {
try {
DatabaseMetaData metaData = dataSource.getConnection().getMetaData();
ResultSet tables = metaData.getTables("controlG", null, null, new String[]{"TABLE"});
ResultSet tables = metaData.getTables("controlg", null, null, new String[]{"TABLE"});
while (tables.next()) {
String tableName = tables.getString("TABLE_NAME");
tableNames.add(tableName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
@Target(ElementType.TYPE)
@ExtendWith(DatabaseInitializerExtension.class)
@SpringBootTest(webEnvironment = WebEnvironment.DEFINED_PORT)
@ActiveProfiles("test")
public @interface AcceptanceTest {
}

0 comments on commit 955e9f7

Please sign in to comment.