start trying to figure out why this test is failing
This commit is contained in:
parent
0e7f24ff26
commit
8e6ba1de52
|
@ -42,7 +42,7 @@ func (suite *AccountVerifyTestSuite) TestAccountVerifyGet() {
|
||||||
|
|
||||||
// set up the request
|
// set up the request
|
||||||
recorder := httptest.NewRecorder()
|
recorder := httptest.NewRecorder()
|
||||||
ctx := suite.newContext(recorder, http.MethodPatch, nil, account.UpdateCredentialsPath, "")
|
ctx := suite.newContext(recorder, http.MethodGet, nil, account.VerifyPath, "")
|
||||||
|
|
||||||
// call the handler
|
// call the handler
|
||||||
suite.accountModule.AccountVerifyGETHandler(ctx)
|
suite.accountModule.AccountVerifyGETHandler(ctx)
|
||||||
|
@ -67,7 +67,7 @@ func (suite *AccountVerifyTestSuite) TestAccountVerifyGet() {
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
lastStatusAt, err := time.Parse(time.RFC3339, apimodelAccount.LastStatusAt)
|
lastStatusAt, err := time.Parse(time.RFC3339, apimodelAccount.LastStatusAt)
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
aaaaaaaaaaaaaaaaaaa
|
||||||
suite.Equal(testAccount.ID, apimodelAccount.ID)
|
suite.Equal(testAccount.ID, apimodelAccount.ID)
|
||||||
suite.Equal(testAccount.Username, apimodelAccount.Username)
|
suite.Equal(testAccount.Username, apimodelAccount.Username)
|
||||||
suite.Equal(testAccount.Username, apimodelAccount.Acct)
|
suite.Equal(testAccount.Username, apimodelAccount.Acct)
|
||||||
|
|
Loading…
Reference in New Issue