Browse Source

Adapt to upstream Spring Batch changes

See gh-47001
pull/47234/head
Phillip Webb 7 months ago
parent
commit
ff83fea96e
  1. 4
      module/spring-boot-batch/src/test/java/org/springframework/boot/batch/autoconfigure/BatchPropertiesTests.java

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

@ -18,7 +18,7 @@ package org.springframework.boot.batch.autoconfigure; @@ -18,7 +18,7 @@ package org.springframework.boot.batch.autoconfigure;
import org.junit.jupiter.api.Test;
import org.springframework.batch.core.configuration.support.DefaultBatchConfiguration;
import org.springframework.batch.core.configuration.support.JdbcDefaultBatchConfiguration;
import static org.assertj.core.api.Assertions.assertThat;
@ -35,7 +35,7 @@ class BatchPropertiesTests { @@ -35,7 +35,7 @@ class BatchPropertiesTests {
.isEqualTo(new TestBatchConfiguration().getValidateTransactionState());
}
static class TestBatchConfiguration extends DefaultBatchConfiguration {
static class TestBatchConfiguration extends JdbcDefaultBatchConfiguration {
@Override
public boolean getValidateTransactionState() {

Loading…
Cancel
Save