Skip to content

Commit

Permalink
Remove classpath: prefix
Browse files Browse the repository at this point in the history
This is required with Liquibase core 4.17.0, since the classpath-
aware resource accessor is now reserved for the Spring integration
  • Loading branch information
fbiville committed Oct 13, 2022
1 parent 6ab5d84 commit 0c3b0d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Neo4jPluginTest extends Specification {
"--url", "jdbc:neo4j:${neo4jContainer.getBoltUrl()}",
"--username", "neo4j",
"--password", PASSWORD,
"--changeLogFile", "classpath:/changelog.xml",
"--changeLogFile", "/changelog.xml",
"updateSQL"
].toArray()

Expand Down Expand Up @@ -123,7 +123,7 @@ CREATE (:SecretMovie {title: 'Neo4j 4.4 EE: A life story'});
"--url", "jdbc:neo4j:${neo4jContainer.getBoltUrl()}",
"--username", "neo4j",
"--password", PASSWORD,
"--changeLogFile", "classpath:/changelog.xml",
"--changeLogFile", "/changelog.xml",
"update"
].toArray()

Expand Down

0 comments on commit 0c3b0d6

Please sign in to comment.