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
parent50c8147568eec4e1434b9b87cb7f9421920481bd (diff)
parent3e11bb540e1014e7e7c1d8b6cb811ea3b5e87752 (diff)
downloadmonzero-core-14602ba5ffd0d84c80dda3ce6dca9636ffcd3118.tar.gz
monzero-core-14602ba5ffd0d84c80dda3ce6dca9636ffcd3118.tar.xz
monzero-core-14602ba5ffd0d84c80dda3ce6dca9636ffcd3118.zip
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()