diff options
author | John Newbery <john@johnnewbery.com> | 2018-02-07 10:38:25 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-03-18 13:32:50 -0400 |
commit | 58122736b53390a2013630e95ff760800af160e7 (patch) | |
tree | 386b714cff790ba9fae18135bb91c13455802e09 /test/functional/wallet_hd.py | |
parent | 0ec08a672dce3f619e46d0c7455e95a13dc5c4e2 (diff) |
[Tests] Require exact match in assert_start_raises_init_eror()
Diffstat (limited to 'test/functional/wallet_hd.py')
-rwxr-xr-x | test/functional/wallet_hd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_hd.py b/test/functional/wallet_hd.py index f37b4bf52b..2f6e2852ac 100755 --- a/test/functional/wallet_hd.py +++ b/test/functional/wallet_hd.py @@ -23,7 +23,7 @@ class WalletHDTest(BitcoinTestFramework): # Make sure can't switch off usehd after wallet creation self.stop_node(1) - self.nodes[1].assert_start_raises_init_error(['-usehd=0'], 'already existing HD wallet') + self.nodes[1].assert_start_raises_init_error(['-usehd=0'], "Error: Error loading : You can't disable HD on an already existing HD wallet") self.start_node(1) connect_nodes_bi(self.nodes, 0, 1) |