commit | 56a03be3f9bf251d17c89034e4c8f2e668211317 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Wed Jun 17 22:21:27 2015 +0200 |
committer | Jens Geyer <jensg@apache.org> | Wed Jun 17 22:21:27 2015 +0200 |
tree | 59012f8a697c65a699e2ccc5286d3d26144e7a08 | |
parent | 085627309591a78e2c7d4c2168ad4b0939cc4f2e [diff] |
THRIFT-3192 Go import paths changed in 1.4, and expired June 1 Client: Go Patch: Adam Beberg <beberg@sentient.ai> This closes #523
diff --git a/lib/go/test/tests/client_error_test.go b/lib/go/test/tests/client_error_test.go index 8fa81cc..829a1dd 100644 --- a/lib/go/test/tests/client_error_test.go +++ b/lib/go/test/tests/client_error_test.go
@@ -20,7 +20,7 @@ package tests import ( - "code.google.com/p/gomock/gomock" + "github.com/golang/mock/gomock" "errors" "errortest" "testing"
diff --git a/lib/go/test/tests/optional_fields_test.go b/lib/go/test/tests/optional_fields_test.go index 324bf00..34ad660 100644 --- a/lib/go/test/tests/optional_fields_test.go +++ b/lib/go/test/tests/optional_fields_test.go
@@ -21,7 +21,7 @@ import ( "bytes" - gomock "code.google.com/p/gomock/gomock" + gomock "github.com/golang/mock/gomock" "optionalfieldstest" "testing" "thrift"
diff --git a/lib/go/test/tests/protocol_mock.go b/lib/go/test/tests/protocol_mock.go index d3f4078..2238074 100644 --- a/lib/go/test/tests/protocol_mock.go +++ b/lib/go/test/tests/protocol_mock.go
@@ -24,7 +24,7 @@ import ( thrift "thrift" - gomock "code.google.com/p/gomock/gomock" + gomock "github.com/golang/mock/gomock" ) // Mock of TProtocol interface
diff --git a/lib/go/test/tests/required_fields_test.go b/lib/go/test/tests/required_fields_test.go index fcc7f25..2053712 100644 --- a/lib/go/test/tests/required_fields_test.go +++ b/lib/go/test/tests/required_fields_test.go
@@ -20,7 +20,7 @@ package tests import ( - "code.google.com/p/gomock/gomock" + "github.com/golang/mock/gomock" "optionalfieldstest" "testing" "thrift"