[bugfix] fix get all tokens (#2841)

This commit is contained in:
tobi 2024-04-16 13:25:47 +02:00 committed by GitHub
commit 6de5717d7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -123,6 +123,14 @@ func (suite *ApplicationTestSuite) TestDeleteApplicationBy() {
}
}
func (suite *ApplicationTestSuite) TestGetAllTokens() {
tokens, err := suite.db.GetAllTokens(context.Background())
if err != nil {
suite.FailNow(err.Error())
}
suite.NotEmpty(tokens)
}
func TestApplicationTestSuite(t *testing.T) {
suite.Run(t, new(ApplicationTestSuite))
}