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:
Stephane Nicoll 2019-11-22 10:18:39 +01:00
commit a38e6b4f49
1 changed files with 16 additions and 0 deletions

View File

@ -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 {