go.crypto: add exp/terminal as code.google.com/p/go.crypto/ssh/terminal.
This removes the sole "exp/foo" import in the Go subrepos.
A separate CL will remove exp/terminal from the standard Go repository.
R=golang-dev, dave, r
CC=golang-dev
https://golang.org/cl/5966045
diff --git a/ssh/session_test.go b/ssh/session_test.go
index b314d14..df66e1d 100644
--- a/ssh/session_test.go
+++ b/ssh/session_test.go
@@ -8,9 +8,10 @@
import (
"bytes"
- "exp/terminal"
"io"
"testing"
+
+ "code.google.com/p/go.crypto/ssh/terminal"
)
type serverType func(*channel)