Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Added correct imports
Browse files Browse the repository at this point in the history
  • Loading branch information
blaubaer committed Aug 15, 2024
1 parent d2ad488 commit 0c97163
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions decode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"strings"
"time"

"github.com/engity-com/go-yaml"
. "gopkg.in/check.v1"
)

Expand Down
1 change: 1 addition & 0 deletions encode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
"net"
"os"

"github.com/engity-com/go-yaml"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 2 additions & 0 deletions example_embedded_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ package yaml_test
import (
"fmt"
"log"

"github.com/engity-com/go-yaml"
)

// An example showing how to unmarshal embedded
Expand Down
1 change: 1 addition & 0 deletions limit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"strings"
"testing"

"github.com/engity-com/go-yaml"
. "gopkg.in/check.v1"
)

Expand Down
5 changes: 3 additions & 2 deletions node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
package yaml_test

import (
. "gopkg.in/check.v1"
"testing"

. "gopkg.in/check.v1"
)

func Test(t *testing.T) { TestingT(t) }
Expand Down

0 comments on commit 0c97163

Please sign in to comment.