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