Merge pull request #18873 from dreis2211
* pr/18873: Let Liquibase smoke test pass on non-english systems Closes gh-18873
This commit is contained in:
commit
a38e6b4f49
|
@ -17,7 +17,10 @@
|
|||
package sample.liquibase;
|
||||
|
||||
import java.net.ConnectException;
|
||||
import java.util.Locale;
|
||||
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
||||
|
@ -31,6 +34,19 @@ public class SampleLiquibaseApplicationTests {
|
|||
@Rule
|
||||
public OutputCapture outputCapture = new OutputCapture();
|
||||
|
||||
private Locale defaultLocale;
|
||||
|
||||
@Before
|
||||
public void init() throws SecurityException {
|
||||
this.defaultLocale = Locale.getDefault();
|
||||
Locale.setDefault(Locale.ENGLISH);
|
||||
}
|
||||
|
||||
@After
|
||||
public void restoreLocale() {
|
||||
Locale.setDefault(this.defaultLocale);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDefaultSettings() throws Exception {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue