Explorar o código

fix(tests): use correct raft package

Brandon Philips %!s(int64=12) %!d(string=hai) anos
pai
achega
2557992b70
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tests/mock/server_v2.go

+ 2 - 2
tests/mock/server_v2.go

@@ -4,14 +4,14 @@ import (
 	"net/http"
 
 	"github.com/coreos/etcd/store"
-	"github.com/coreos/go-raft"
+	"github.com/coreos/etcd/third_party/github.com/coreos/raft"
 	"github.com/stretchr/testify/mock"
 )
 
 // A mock Server for the v2 handlers.
 type ServerV2 struct {
 	mock.Mock
-	store store.Store
+	store	store.Store
 }
 
 func NewServerV2(store store.Store) *ServerV2 {