mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
functional_tests: test creating wallets with local language names
This commit is contained in:
parent
eeca5ca0c8
commit
3e11bb540e
1 changed files with 3 additions and 2 deletions
|
@ -198,8 +198,9 @@ class WalletAddressTest():
|
|||
try: wallet.close_wallet()
|
||||
except: pass
|
||||
languages = res.languages
|
||||
for language in languages:
|
||||
print('Creating ' + str(language) + ' wallet')
|
||||
languages_local = res.languages_local
|
||||
for language in languages + languages_local:
|
||||
print('Creating ' + language.encode('utf8') + ' wallet')
|
||||
wallet.create_wallet(filename = '', language = language)
|
||||
res = wallet.query_key('mnemonic')
|
||||
wallet.close_wallet()
|
||||
|
|
Loading…
Reference in a new issue