diff --git a/decode_test.go b/decode_test.go index 84d509a6..3999e386 100644 --- a/decode_test.go +++ b/decode_test.go @@ -26,6 +26,7 @@ import ( "strings" "time" + "github.com/engity-com/go-yaml" . "gopkg.in/check.v1" ) diff --git a/encode_test.go b/encode_test.go index 49ed2cc1..bd404165 100644 --- a/encode_test.go +++ b/encode_test.go @@ -27,6 +27,7 @@ import ( "net" "os" + "github.com/engity-com/go-yaml" . "gopkg.in/check.v1" ) diff --git a/example_embedded_test.go b/example_embedded_test.go index 24db5892..d3ac8bad 100644 --- a/example_embedded_test.go +++ b/example_embedded_test.go @@ -19,6 +19,8 @@ package yaml_test import ( "fmt" "log" + + "github.com/engity-com/go-yaml" ) // An example showing how to unmarshal embedded diff --git a/limit_test.go b/limit_test.go index 6b2e5ef2..fb08cfc7 100644 --- a/limit_test.go +++ b/limit_test.go @@ -4,6 +4,7 @@ import ( "strings" "testing" + "github.com/engity-com/go-yaml" . "gopkg.in/check.v1" ) diff --git a/node_test.go b/node_test.go index 66c4ca07..e4d17a83 100644 --- a/node_test.go +++ b/node_test.go @@ -19,11 +19,12 @@ package yaml_test import ( "bytes" "fmt" + "io" "os" + "strings" + "github.com/engity-com/go-yaml" . "gopkg.in/check.v1" - "io" - "strings" ) var nodeTests = []struct { diff --git a/suite_test.go b/suite_test.go index 23cf125a..81e2a88c 100644 --- a/suite_test.go +++ b/suite_test.go @@ -17,8 +17,9 @@ package yaml_test import ( - . "gopkg.in/check.v1" "testing" + + . "gopkg.in/check.v1" ) func Test(t *testing.T) { TestingT(t) }