diff --git a/commands_test.go b/commands_test.go index a1b2a7f4..90409cb8 100644 --- a/commands_test.go +++ b/commands_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" "github.com/spf13/cobra" ) diff --git a/pkg/marshal/json_converter_test.go b/pkg/marshal/json_converter_test.go index e73f7157..e49fbd28 100644 --- a/pkg/marshal/json_converter_test.go +++ b/pkg/marshal/json_converter_test.go @@ -3,7 +3,7 @@ package marshal import ( "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" ) func TestJsonToString(t *testing.T) { diff --git a/pkg/marshal/yaml_converter_test.go b/pkg/marshal/yaml_converter_test.go index d6efc804..35e9a4d1 100644 --- a/pkg/marshal/yaml_converter_test.go +++ b/pkg/marshal/yaml_converter_test.go @@ -3,7 +3,7 @@ package marshal import ( "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" ) func TestYamlToString(t *testing.T) { diff --git a/pkg/yqlib/data_navigator_test.go b/pkg/yqlib/data_navigator_test.go index fc0c1a26..614a4977 100644 --- a/pkg/yqlib/data_navigator_test.go +++ b/pkg/yqlib/data_navigator_test.go @@ -5,7 +5,7 @@ import ( "sort" "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" logging "gopkg.in/op/go-logging.v1" ) diff --git a/pkg/yqlib/lib_test.go b/pkg/yqlib/lib_test.go index bcc6e34a..bcfac5ff 100644 --- a/pkg/yqlib/lib_test.go +++ b/pkg/yqlib/lib_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" logging "gopkg.in/op/go-logging.v1" ) diff --git a/pkg/yqlib/path_parser_test.go b/pkg/yqlib/path_parser_test.go index 3ee18909..c2d7fe26 100644 --- a/pkg/yqlib/path_parser_test.go +++ b/pkg/yqlib/path_parser_test.go @@ -3,7 +3,7 @@ package yqlib import ( "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" ) var parsePathsTests = []struct { diff --git a/pkg/yqlib/value_parser_test.go b/pkg/yqlib/value_parser_test.go index 083fc3f5..2246b398 100644 --- a/pkg/yqlib/value_parser_test.go +++ b/pkg/yqlib/value_parser_test.go @@ -3,7 +3,7 @@ package yqlib import ( "testing" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/test" ) var parseValueTests = []struct { diff --git a/yq.go b/yq.go index f5a24397..345706fa 100644 --- a/yq.go +++ b/yq.go @@ -10,8 +10,8 @@ import ( "strconv" "strings" - "github.com/mikefarah/yq/pkg/marshal" - "github.com/mikefarah/yq/pkg/yqlib" + "github.com/mikefarah/yq/v2/pkg/marshal" + "github.com/mikefarah/yq/v2/pkg/yqlib" errors "github.com/pkg/errors" diff --git a/yq_test.go b/yq_test.go index 015fcace..677f7bd0 100644 --- a/yq_test.go +++ b/yq_test.go @@ -5,8 +5,8 @@ import ( "runtime" "testing" - "github.com/mikefarah/yq/pkg/marshal" - "github.com/mikefarah/yq/test" + "github.com/mikefarah/yq/v2/pkg/marshal" + "github.com/mikefarah/yq/v2/test" ) func TestMultilineString(t *testing.T) {