Skip to content

Commit 2a90c3d

Browse files
committed
Fix broken smoke test
See gh-19926
1 parent 4c0c0ae commit 2a90c3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot-samples/spring-boot-sample-liquibase/src/test/java/sample/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.
@@ -61,9 +61,9 @@ public void testDefaultSettings() throws Exception {
6161
assertThat(output).contains("Successfully acquired change log lock")
6262
.contains("Creating database history " + "table with name: PUBLIC.DATABASECHANGELOG")
6363
.contains("Table person created")
64-
.contains("ChangeSet classpath:/db/" + "changelog/db.changelog-master.yaml::1::"
64+
.contains("ChangeSet classpath:db/" + "changelog/db.changelog-master.yaml::1::"
6565
+ "marceloverdijk ran successfully")
66-
.contains("New row inserted into person").contains("ChangeSet classpath:/db/changelog/"
66+
.contains("New row inserted into person").contains("ChangeSet classpath:db/changelog/"
6767
+ "db.changelog-master.yaml::2::" + "marceloverdijk ran successfully")
6868
.contains("Successfully released change log lock");
6969
}

0 commit comments

Comments
 (0)