Skip to content

Commit c2f8331

Browse files
committed
Fix reference to JPA entity in LiquibaseAutoConfigurationTests
Closes gh-44788
1 parent 1e33d63 commit c2f8331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseAutoConfigurationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ static class CustomH2Driver extends org.h2.Driver {
875875
<?xml version="1.0" encoding="UTF-8"?>
876876
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence https://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
877877
<persistence-unit name="manually-configured">
878-
<class>org.springframework.boot.autoconfigure.flyway.FlywayAutoConfigurationTests$City</class>
878+
<class>org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfigurationTests$City</class>
879879
<exclude-unlisted-classes>true</exclude-unlisted-classes>
880880
</persistence-unit>
881881
</persistence>

0 commit comments

Comments
 (0)