Improve comment on FillSliceWith() helper func

pull/2/head
Vinícius Garcia 2020-09-30 22:12:00 -03:00
parent ad77d0a1a0
commit 76e5ad0f0f
1 changed files with 2 additions and 2 deletions

View File

@ -311,8 +311,8 @@ func FillStructWith(entity interface{}, dbRow map[string]interface{}) error {
// FillSliceWith is meant to be used on unit tests to mock
// the response from the database.
//
// The first argument is any struct you are passing to a kissorm func,
// and the second is a map representing a database row you want
// The first argument is any slice of structs you are passing to a kissorm func,
// and the second is a slice of maps representing the database rows you want
// to use to update this struct.
func FillSliceWith(entities interface{}, dbRows []map[string]interface{}) error {
slicePtrValue := reflect.ValueOf(entities)