linting and go version update
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful

This commit is contained in:
2025-05-15 13:16:29 -04:00
parent f9a8e9666e
commit ab0e40c695
6 changed files with 8 additions and 10 deletions

View File

@@ -57,6 +57,5 @@ func NewTestDatabase(tb testing.TB) *TestDatabase {
}
func (tdb *TestDatabase) TearDown() {
tdb.Db.Close()
_ = tdb.container.Terminate(context.Background())
}

View File

@@ -5,7 +5,7 @@ import (
)
var (
ErrNotFound error = errors.New("Todo cannot be found")
ErrNotFound error = errors.New("todo cannot be found")
)
type TodoRow struct {

View File

@@ -9,7 +9,7 @@ import (
)
var (
ErrNotFound error = errors.New("Todo cannot be found")
ErrNotFound error = errors.New("todo cannot be found")
)
type Todo struct {