make stream private

This commit is contained in:
Lucas Clemente
2016-04-25 17:50:35 +02:00
parent a79f7c4dc6
commit 23a1e08e90
7 changed files with 155 additions and 146 deletions

View File

@@ -78,6 +78,10 @@ func (s *mockStream) Write(p []byte) (int, error) {
return s.dataWritten.Write(p)
}
func (s *mockStream) Close() error {
panic("not implemented")
}
var _ = Describe("Crypto setup", func() {
var (
kex *mockKEX