diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-30 21:06:13 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-08-16 17:06:08 +0000 |
commit | 3e11bb540e1014e7e7c1d8b6cb811ea3b5e87752 (patch) | |
tree | c5208a7838c82b507109af30c98cd918df2eb83a /tests | |
parent | epee: support unicode in parsed strings (diff) | |
download | monero-3e11bb540e1014e7e7c1d8b6cb811ea3b5e87752.tar.xz |
functional_tests: test creating wallets with local language names
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/wallet_address.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/functional_tests/wallet_address.py b/tests/functional_tests/wallet_address.py index 4ff059a6f..eda52b432 100755 --- a/tests/functional_tests/wallet_address.py +++ b/tests/functional_tests/wallet_address.py @@ -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() |