Fixes failing unit test

This commit is contained in:
Manu Mtz-Almeida
2015-04-07 18:14:33 +02:00
parent a887e395f3
commit 9828435f70
2 changed files with 0 additions and 57 deletions

View File

@ -6,7 +6,6 @@ package binding
import (
"errors"
"fmt"
"log"
"reflect"
"strconv"
@ -27,7 +26,6 @@ func mapForm(ptr interface{}, form map[string][]string) error {
inputFieldName = typeField.Name
}
inputValue, exists := form[inputFieldName]
fmt.Println("Field: "+inputFieldName+" Value: ", inputValue)
if !exists {
continue