Skip to content

Commit

Permalink
Fixed generateChangelog.test.groovy for german locale
Browse files Browse the repository at this point in the history
  • Loading branch information
quipsy-karg committed Jun 20, 2023
1 parent 47f0f74 commit 87ca520
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package liquibase.extension.testing.command

import static java.util.ResourceBundle.getBundle

import liquibase.change.ColumnConfig
import liquibase.change.ConstraintsConfig
import liquibase.change.core.AddForeignKeyConstraintChange
Expand Down Expand Up @@ -152,7 +154,7 @@ Optional Args:
cleanResources("changelog-test.xml")
}
expectedException = CommandValidationException.class
expectedExceptionMessage = "Output ChangeLogFile 'target/test-classes/changelog-test.xml' already exists!"
expectedExceptionMessage = getBundle("liquibase/i18n/liquibase-core").getString("changelogfile.already.exists").replace("%s", "target/test-classes/changelog-test.xml")
}

run "Filtering with includeObjects", {
Expand Down

0 comments on commit 87ca520

Please sign in to comment.