Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 91bb1ef

Browse files
committed
Changing module name to align with the repo
Otherwise, this fork cannot be used with a `replace` directive, which in turn prevent the module using it from being installed with `go install`. See also: golang/go#44840
1 parent eeec332 commit 91bb1ef

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

decode_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"time"
2727

2828
. "gopkg.in/check.v1"
29-
"gopkg.in/yaml.v3"
29+
"github.com/setrofim/yaml"
3030
)
3131

3232
var unmarshalIntTest = 123

encode_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"os"
2828

2929
. "gopkg.in/check.v1"
30-
"gopkg.in/yaml.v3"
30+
"github.com/setrofim/yaml"
3131
)
3232

3333
var marshalIntTest = 123

example_embedded_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"log"
2121

22-
"gopkg.in/yaml.v3"
22+
"github.com/setrofim/yaml"
2323
)
2424

2525
// An example showing how to unmarshal embedded

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module "gopkg.in/yaml.v3"
1+
module github.com/setrofim/yaml
22

33
require (
4-
"gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405
4+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
55
)

limit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
. "gopkg.in/check.v1"
8-
"gopkg.in/yaml.v3"
8+
"github.com/setrofim/yaml"
99
)
1010

1111
var limitTests = []struct {

node_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"os"
2222

2323
. "gopkg.in/check.v1"
24-
"gopkg.in/yaml.v3"
24+
"github.com/setrofim/yaml"
2525
"io"
2626
"strings"
2727
)

0 commit comments

Comments
 (0)