Skip to content

Commit fd50c0b

Browse files
committed
fix go-check import
1 parent e7a4989 commit fd50c0b

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

examples/fs_test.go

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

7-
. "github.com/go-check/check"
7+
. "gopkg.in/check.v1"
88

99
ds "github.com/ipfs/go-datastore"
1010
query "github.com/ipfs/go-datastore/query"

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
module github.com/ipfs/go-datastore
22

33
require (
4-
github.com/go-check/check v0.0.0-20180628173108-788fd7840127
54
github.com/google/uuid v1.1.1
65
github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8
76
github.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8
87
github.com/kr/pretty v0.1.0 // indirect
98
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
10-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
9+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
1110
)
1211

1312
go 1.12

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/go-check/check v0.0.0-20180628173108-788fd7840127 h1:0gkP6mzaMqkmpcJYCFOLkIBwI7xFExG03bbkOkCvUPI=
2-
github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98=
31
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
42
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
53
github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8 h1:NAviDvJ0WXgD+yiL2Rj35AmnfgI11+pHXbdciD917U0=

key_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
. "github.com/go-check/check"
9+
. "gopkg.in/check.v1"
1010
. "github.com/ipfs/go-datastore"
1111
)
1212

keytransform/keytransform_test.go

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

8-
. "github.com/go-check/check"
8+
. "gopkg.in/check.v1"
99

1010
ds "github.com/ipfs/go-datastore"
1111
kt "github.com/ipfs/go-datastore/keytransform"

namespace/namespace_test.go

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

8-
. "github.com/go-check/check"
8+
. "gopkg.in/check.v1"
99

1010
ds "github.com/ipfs/go-datastore"
1111
ns "github.com/ipfs/go-datastore/namespace"

0 commit comments

Comments
 (0)