aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-08-17 15:22:46 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-08-17 15:22:46 -0500
commit14602ba5ffd0d84c80dda3ce6dca9636ffcd3118 (patch)
treed6eba540bcd8b6beb8f70117c8be34df2c157dbb /tests/functional_tests
parentMerge pull request #5490 (diff)
parentfunctional_tests: test creating wallets with local language names (diff)
downloadmonero-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-xtests/functional_tests/wallet_address.py5
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()