Merge pull request #522 from teejays/v9

Issue #521: Non-standard validators import path fix
pull/529/head
Dean Karn 5 years ago committed by GitHub
commit 205b733988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      non-standard/validators/notblank.go
  2. 2
      non-standard/validators/notblank_test.go

@ -4,7 +4,7 @@ import (
"reflect" "reflect"
"strings" "strings"
"github.com/andreiavrammsd/validator" "gopkg.in/go-playground/validator.v9"
) )
// NotBlank is the validation function for validating if the current field // NotBlank is the validation function for validating if the current field

@ -3,7 +3,7 @@ package validators
import ( import (
"testing" "testing"
"github.com/andreiavrammsd/validator" "gopkg.in/go-playground/validator.v9"
"gopkg.in/go-playground/assert.v1" "gopkg.in/go-playground/assert.v1"
) )

Loading…
Cancel
Save