diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-01 13:48:52 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-01 13:38:23 +0100 |
commit | fada2dfcac1c4b47ee76b877d91d515cf1d36410 (patch) | |
tree | c1f137d73ba9af4cf1a471585abbb51a86c9a701 /test | |
parent | 277c225b842168c132e4ca1efe360f811dade5d3 (diff) |
test: Fix wallet_multiwallet issue on windows
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/wallet_multiwallet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py index eeaa607db7..fb4532bcf6 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -127,7 +127,7 @@ class MultiWalletTest(BitcoinTestFramework): os.mkdir(wallet_dir('no_access')) os.chmod(wallet_dir('no_access'), 0) try: - with self.nodes[0].assert_debug_log(expected_msgs=['Too many levels of symbolic links', 'Error scanning']): + with self.nodes[0].assert_debug_log(expected_msgs=['Error scanning']): walletlist = self.nodes[0].listwalletdir()['wallets'] finally: # Need to ensure access is restored for cleanup |