@@ -23,15 +23,15 @@ def run_test(self):
2323 self .stop_node (0 )
2424
2525 # should not initialize if there are duplicate wallets
26- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w1' , '-wallet=w1' ], 'Duplicate -wallet filename' )
26+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w1' , '-wallet=w1' ], 'Error loading wallet w1. Duplicate -wallet filename specified. ' )
2727
2828 # should not initialize if wallet file is a directory
2929 os .mkdir (os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w11' ))
30- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w11' ], 'Invalid -wallet file' )
30+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w11' ], 'Error loading wallet w11. -wallet filename must be a regular file. ' )
3131
3232 # should not initialize if wallet file is a symlink
3333 os .symlink (os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w1' ), os .path .join (self .options .tmpdir , 'node0' , 'regtest' , 'w12' ))
34- self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w12' ], 'Invalid -wallet file' )
34+ self .assert_start_raises_init_error (0 , self .options .tmpdir , ['-wallet=w12' ], 'Error loading wallet w12. -wallet filename must be a regular file. ' )
3535
3636 self .nodes [0 ] = self .start_node (0 , self .options .tmpdir , self .extra_args [0 ])
3737
0 commit comments