fix order of s.Equal args
This commit is contained in:
parent
74f38d4f94
commit
83e71f3e4f
|
@ -196,7 +196,7 @@ func (s *ManagerTestSuite) TestCreateAccount() {
|
||||||
|
|
||||||
s.nodeManager.EXPECT().AccountKeyStore().Return(nil, testErrKeyStore)
|
s.nodeManager.EXPECT().AccountKeyStore().Return(nil, testErrKeyStore)
|
||||||
_, _, _, err = s.accManager.CreateAccount(s.password)
|
_, _, _, err = s.accManager.CreateAccount(s.password)
|
||||||
s.Equal(err, testErrKeyStore)
|
s.Equal(testErrKeyStore, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ManagerTestSuite) TestRecoverAccount() {
|
func (s *ManagerTestSuite) TestRecoverAccount() {
|
||||||
|
@ -210,7 +210,7 @@ func (s *ManagerTestSuite) TestRecoverAccount() {
|
||||||
|
|
||||||
s.nodeManager.EXPECT().AccountKeyStore().Return(nil, testErrKeyStore)
|
s.nodeManager.EXPECT().AccountKeyStore().Return(nil, testErrKeyStore)
|
||||||
_, _, err = s.accManager.RecoverAccount(s.password, s.mnemonic)
|
_, _, err = s.accManager.RecoverAccount(s.password, s.mnemonic)
|
||||||
s.Equal(err, testErrKeyStore)
|
s.Equal(testErrKeyStore, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ManagerTestSuite) TestSelectAccount() {
|
func (s *ManagerTestSuite) TestSelectAccount() {
|
||||||
|
|
Loading…
Reference in New Issue