Skip to content

Commit

Permalink
Added more assertions to GetApp test
Browse files Browse the repository at this point in the history
  • Loading branch information
suprjinx committed Jul 7, 2023
1 parent 637795e commit 2fecbb8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/golang/aim/app/get_app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ func (s *GetAppTestSuite) Test_Ok() {
)
assert.Nil(s.T(), err)
assert.Equal(s.T(), s.apps[0].ID, resp.ID)
assert.Equal(s.T(), s.apps[0].Type, resp.Type)
assert.Equal(s.T(), s.apps[0].State, resp.State)
assert.NotEmpty(s.T(), resp.CreatedAt)
assert.NotEmpty(s.T(), resp.UpdatedAt)
})
}
}
Expand Down

0 comments on commit 2fecbb8

Please sign in to comment.