mirror of
https://github.com/sparrowwallet/hummingbird.git
synced 2024-11-02 18:46:45 +00:00
Fix test case failure in non-English environment
This commit is contained in:
parent
327f0490e2
commit
76503b5f8f
1 changed files with 2 additions and 1 deletions
|
@ -10,9 +10,10 @@ import org.junit.Test;
|
||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
public class CryptoSeedTest {
|
public class CryptoSeedTest {
|
||||||
private final DateFormat dateFormat = new SimpleDateFormat("dd MMM yyyy");
|
private final DateFormat dateFormat = new SimpleDateFormat("dd MMM yyyy", Locale.ENGLISH);
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSeed() throws CborException {
|
public void testSeed() throws CborException {
|
||||||
|
|
Loading…
Reference in a new issue