finalize TestCreateChildAccount
This commit is contained in:
parent
3fd4e04f59
commit
48d75d135c
|
@ -310,6 +310,20 @@ func (s *ManagerTestSuite) TestCreateChildAccount() {
|
||||||
[]interface{}{nil, errors.New("Can't return a key store")},
|
[]interface{}{nil, errors.New("Can't return a key store")},
|
||||||
true,
|
true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"fail_wrongAddress",
|
||||||
|
"wrong-address",
|
||||||
|
s.password,
|
||||||
|
[]interface{}{s.keyStore, nil},
|
||||||
|
true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fail_wrongPassword",
|
||||||
|
addr,
|
||||||
|
"wrong-password",
|
||||||
|
[]interface{}{s.keyStore, nil},
|
||||||
|
true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, testCase := range testCases {
|
for _, testCase := range testCases {
|
||||||
|
|
Loading…
Reference in New Issue