Skip to content

Commit 205b733

Browse files
author
Dean Karn
authored
Merge pull request #522 from teejays/v9
Issue #521: Non-standard validators import path fix
2 parents 556b9da + 4e2a13b commit 205b733

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

non-standard/validators/notblank.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"strings"
66

7-
"github.com/andreiavrammsd/validator"
7+
"gopkg.in/go-playground/validator.v9"
88
)
99

1010
// NotBlank is the validation function for validating if the current field

non-standard/validators/notblank_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package validators
33
import (
44
"testing"
55

6-
"github.com/andreiavrammsd/validator"
6+
"gopkg.in/go-playground/validator.v9"
77
"gopkg.in/go-playground/assert.v1"
88
)
99

0 commit comments

Comments
 (0)