diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-08-17 15:22:46 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-17 15:22:46 -0500 |
commit | 14602ba5ffd0d84c80dda3ce6dca9636ffcd3118 (patch) | |
tree | d6eba540bcd8b6beb8f70117c8be34df2c157dbb /tests/functional_tests | |
parent | Merge pull request #5490 (diff) | |
parent | functional_tests: test creating wallets with local language names (diff) | |
download | monero-14602ba5ffd0d84c80dda3ce6dca9636ffcd3118.tar.xz |
Merge pull request #5504
eeca5ca epee: support unicode in parsed strings (moneromooo-monero)
3e11bb5 functional_tests: test creating wallets with local language names (moneromooo-monero)
Diffstat (limited to 'tests/functional_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() |