Skip to content

Commit 1e43537

Browse files
committed
Fix broken smoke test
See gh-19926
1 parent a425cc1 commit 1e43537

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-liquibase/src/test/java/smoketest/liquibase/SampleLiquibaseApplicationTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -59,10 +59,10 @@ void testDefaultSettings(CapturedOutput output) throws Exception {
5959
assertThat(output).contains("Successfully acquired change log lock")
6060
.contains("Creating database history table with name: PUBLIC.DATABASECHANGELOG")
6161
.contains("Table person created")
62-
.contains("ChangeSet classpath:/db/changelog/db.changelog-master.yaml::1::"
62+
.contains("ChangeSet classpath:db/changelog/db.changelog-master.yaml::1::"
6363
+ "marceloverdijk ran successfully")
6464
.contains("New row inserted into person")
65-
.contains("ChangeSet classpath:/db/changelog/"
65+
.contains("ChangeSet classpath:db/changelog/"
6666
+ "db.changelog-master.yaml::2::marceloverdijk ran successfully")
6767
.contains("Successfully released change log lock");
6868
}

0 commit comments

Comments
 (0)