Skip to content

Commit ff83fea

Browse files
committed
Adapt to upstream Spring Batch changes
See gh-47001
1 parent b439c07 commit ff83fea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/BatchPropertiesTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import org.junit.jupiter.api.Test;
2020

21-
import org.springframework.batch.core.configuration.support.DefaultBatchConfiguration;
21+
import org.springframework.batch.core.configuration.support.JdbcDefaultBatchConfiguration;
2222

2323
import static org.assertj.core.api.Assertions.assertThat;
2424

@@ -35,7 +35,7 @@ void validateTransactionStateDefaultMatchesSpringBatchDefault() {
3535
.isEqualTo(new TestBatchConfiguration().getValidateTransactionState());
3636
}
3737

38-
static class TestBatchConfiguration extends DefaultBatchConfiguration {
38+
static class TestBatchConfiguration extends JdbcDefaultBatchConfiguration {
3939

4040
@Override
4141
public boolean getValidateTransactionState() {

0 commit comments

Comments
 (0)