diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-01-19 15:21:25 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2022-01-19 16:25:20 -0500 |
commit | dc5d6b0d4793ca978f71f69ef7d6b818794676c2 (patch) | |
tree | ae4cce6b6e5dd19523db07264b53628ba70b0d39 /test | |
parent | 869c6e23c5a63fa05a1e4ca1028aadc3fa8a7529 (diff) |
fs: Make compatible with boost 1.78
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 0b868dde6c..317121eb68 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -141,7 +141,7 @@ class MultiWalletTest(BitcoinTestFramework): # should raise rpc error if wallet path can't be created err_code = -4 if self.options.descriptors else -1 - assert_raises_rpc_error(err_code, "boost::filesystem::create_directory:", self.nodes[0].createwallet, "w8/bad") + assert_raises_rpc_error(err_code, "boost::filesystem::create_director", self.nodes[0].createwallet, "w8/bad") # check that all requested wallets were created self.stop_node(0) |