Compare commits

..

No commits in common. "master" and "0.4.0" have entirely different histories.

View file

@ -16,13 +16,9 @@ const (
key = "../server.key"
)
// Tests the SSH functionality of the package.
//
// It requires manual input of the local SSH private key path into the key
// variable, and the remote address into the ip variable.
func Test_SSH(t *testing.T) {
var cipherList []string
session, err := connect(username, password, ip, key, port, cipherList, nil)
session, err := connect(username, password, ip, key, port, cipherList)
if err != nil {
t.Error(err)
return