Skip to content

Commit 7e2df5c

Browse files
author
Robert Zaremba
committed
Use gopkg.in/check.v1 instead of launchpad.net/gocheck
gocheck package moved to github and should be referenced as gopkg.in/check.v1 https://github.com/go-check/check Update wercker to use gopkg.in/check.v1
1 parent 4b0a86c commit 7e2df5c

17 files changed

+17
-17
lines changed

gorethink_test.go

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

10-
test "launchpad.net/gocheck"
10+
test "gopkg.in/check.v1"
1111
)
1212

1313
var sess *Session

query_aggregation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestAggregationReduce(c *test.C) {

query_control_test.go

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

7-
test "launchpad.net/gocheck"
7+
test "gopkg.in/check.v1"
88
)
99

1010
func (s *RethinkSuite) TestControlExecNil(c *test.C) {

query_db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestDbCreate(c *test.C) {

query_join_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestJoinInnerJoin(c *test.C) {

query_manipulation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestManipulationDocField(c *test.C) {

query_math_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestMathAdd(c *test.C) {

query_select_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gorethink
33
import (
44
"fmt"
55

6-
test "launchpad.net/gocheck"
6+
test "gopkg.in/check.v1"
77
)
88

99
func (s *RethinkSuite) TestSelectGet(c *test.C) {

query_string_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gorethink
22

33
import (
4-
test "launchpad.net/gocheck"
4+
test "gopkg.in/check.v1"
55
)
66

77
func (s *RethinkSuite) TestStringMatchSuccess(c *test.C) {

query_table_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gorethink
33
import (
44
"sync"
55

6-
test "launchpad.net/gocheck"
6+
test "gopkg.in/check.v1"
77
)
88

99
func (s *RethinkSuite) TestTableCreate(c *test.C) {

0 commit comments

Comments
 (0)