Skip to content

Commit e5f26a4

Browse files
committed
Rename test resource to be Windows-friendly
1 parent 1ceb96f commit e5f26a4

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/quartz/QuartzDataSourceInitializerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class QuartzDataSourceInitializerTests {
5151
public void commentPrefixCanBeCustomized() {
5252
this.contextRunner.withUserConfiguration(TestConfiguration.class).withPropertyValues(
5353
"spring.quartz.jdbc.comment-prefix=**",
54-
"spring.quartz.jdbc.schema=classpath:org/springframework/boot/autoconfigure/quartz/tables_**_comments.sql")
54+
"spring.quartz.jdbc.schema=classpath:org/springframework/boot/autoconfigure/quartz/tables_custom_comment_prefix.sql")
5555
.run((context) -> {
5656
JdbcTemplate jdbcTemplate = context.getBean(JdbcTemplate.class);
5757
assertThat(jdbcTemplate.queryForObject("SELECT COUNT(*) FROM QRTZ_TEST_TABLE", Integer.class))

0 commit comments

Comments
 (0)