From 0c3b0d632e7168341e69bc29279f4a473ae94c78 Mon Sep 17 00:00:00 2001 From: Florent Biville Date: Thu, 13 Oct 2022 09:59:36 +0200 Subject: [PATCH] Remove `classpath:` prefix This is required with Liquibase core 4.17.0, since the classpath- aware resource accessor is now reserved for the Spring integration --- src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy b/src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy index 027dc00d..4b787701 100644 --- a/src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy +++ b/src/test/groovy/liquibase/ext/neo4j/Neo4jPluginTest.groovy @@ -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() @@ -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()