Browse Source

etcdserver: fix test due to rebase

Yicheng Qin 11 years ago
parent
commit
b64246720b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      etcdserver/server_test.go

+ 1 - 1
etcdserver/server_test.go

@@ -836,7 +836,7 @@ func TestServerStopItself(t *testing.T) {
 		Send:    func(_ []raftpb.Message) {},
 		Storage: &storageRecorder{},
 	}
-	s.Start()
+	s.start()
 	n.readyc <- raft.Ready{SoftState: &raft.SoftState{ShouldStop: true}}
 
 	select {